diff --git a/grammar.js b/grammar.js index 19de8d69..d4b827c6 100644 --- a/grammar.js +++ b/grammar.js @@ -23,14 +23,15 @@ const PREC = { EQUAL: 6, RELATIONAL: 7, SIZEOF: 8, - SHIFT: 9, - ADD: 10, - MULTIPLY: 11, - CAST: 12, - UNARY: 13, - CALL: 14, - FIELD: 15, - SUBSCRIPT: 16, + OFFSETOF: 9, + SHIFT: 10, + ADD: 11, + MULTIPLY: 12, + CAST: 13, + UNARY: 14, + CALL: 15, + FIELD: 16, + SUBSCRIPT: 17, }; module.exports = grammar({ @@ -738,6 +739,7 @@ module.exports = grammar({ $.cast_expression, $.pointer_expression, $.sizeof_expression, + $.offsetof_expression, $.generic_expression, $.subscript_expression, $.call_expression, @@ -868,6 +870,11 @@ module.exports = grammar({ ), )), + offsetof_expression: $ => prec(PREC.OFFSETOF, seq( + 'offsetof', + seq('(', field('type', $.type_descriptor), ',', field('member', $._field_identifier), ')'), + )), + generic_expression: $ => prec(PREC.CALL, seq( '_Generic', '(', diff --git a/src/grammar.json b/src/grammar.json index e59a0ab5..f7f352b8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -879,7 +879,7 @@ "members": [ { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -919,7 +919,7 @@ }, "preproc_unary_expression": { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -961,7 +961,7 @@ }, "preproc_call_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -1040,7 +1040,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -1073,7 +1073,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -1106,7 +1106,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1139,7 +1139,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1172,7 +1172,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1568,7 +1568,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -1601,7 +1601,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -4362,6 +4362,10 @@ "type": "SYMBOL", "name": "sizeof_expression" }, + { + "type": "SYMBOL", + "name": "offsetof_expression" + }, { "type": "SYMBOL", "name": "generic_expression" @@ -4612,7 +4616,7 @@ }, "pointer_expression": { "type": "PREC_LEFT", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -4646,7 +4650,7 @@ }, "unary_expression": { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -4691,7 +4695,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -4724,7 +4728,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -4757,7 +4761,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -4790,7 +4794,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -4823,7 +4827,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -5219,7 +5223,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -5252,7 +5256,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -5287,7 +5291,7 @@ }, "update_expression": { "type": "PREC_RIGHT", - "value": 13, + "value": 14, "content": { "type": "CHOICE", "members": [ @@ -5356,7 +5360,7 @@ }, "cast_expression": { "type": "PREC", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -5477,9 +5481,55 @@ ] } }, + "offsetof_expression": { + "type": "PREC", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "offsetof" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, "generic_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -5559,7 +5609,7 @@ }, "subscript_expression": { "type": "PREC", - "value": 16, + "value": 17, "content": { "type": "SEQ", "members": [ @@ -5592,7 +5642,7 @@ }, "call_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -5666,7 +5716,7 @@ "members": [ { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -6716,14 +6766,15 @@ "EQUAL": 6, "RELATIONAL": 7, "SIZEOF": 8, - "SHIFT": 9, - "ADD": 10, - "MULTIPLY": 11, - "CAST": 12, - "UNARY": 13, - "CALL": 14, - "FIELD": 15, - "SUBSCRIPT": 16 + "OFFSETOF": 9, + "SHIFT": 10, + "ADD": 11, + "MULTIPLY": 12, + "CAST": 13, + "UNARY": 14, + "CALL": 15, + "FIELD": 16, + "SUBSCRIPT": 17 } } diff --git a/src/node-types.json b/src/node-types.json index c28d422f..22a8d8a0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -111,6 +111,10 @@ "type": "number_literal", "named": true }, + { + "type": "offsetof_expression", + "named": true + }, { "type": "parenthesized_expression", "named": true @@ -1991,6 +1995,32 @@ "named": true, "fields": {} }, + { + "type": "offsetof_expression", + "named": true, + "fields": { + "member": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, { "type": "parameter_declaration", "named": true, @@ -3572,6 +3602,10 @@ "type": "number_literal", "named": true }, + { + "type": "offsetof", + "named": false + }, { "type": "preproc_arg", "named": true diff --git a/src/parser.c b/src/parser.c index 2215f854..8ce80e32 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1489 +#define STATE_COUNT 1495 #define LARGE_STATE_COUNT 385 -#define SYMBOL_COUNT 271 +#define SYMBOL_COUNT 273 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 131 +#define TOKEN_COUNT 132 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 25 +#define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 86 +#define PRODUCTION_ID_COUNT 87 enum { sym_identifier = 1, @@ -125,171 +125,173 @@ enum { anon_sym_DASH_DASH = 106, anon_sym_PLUS_PLUS = 107, anon_sym_sizeof = 108, - anon_sym__Generic = 109, - anon_sym_DOT = 110, - anon_sym_DASH_GT = 111, - sym_number_literal = 112, - anon_sym_L_SQUOTE = 113, - anon_sym_u_SQUOTE = 114, - anon_sym_U_SQUOTE = 115, - anon_sym_u8_SQUOTE = 116, - anon_sym_SQUOTE = 117, - aux_sym_char_literal_token1 = 118, - anon_sym_L_DQUOTE = 119, - anon_sym_u_DQUOTE = 120, - anon_sym_U_DQUOTE = 121, - anon_sym_u8_DQUOTE = 122, - anon_sym_DQUOTE = 123, - aux_sym_string_literal_token1 = 124, - sym_escape_sequence = 125, - sym_system_lib_string = 126, - sym_true = 127, - sym_false = 128, - sym_null = 129, - sym_comment = 130, - sym_translation_unit = 131, - sym_preproc_include = 132, - sym_preproc_def = 133, - sym_preproc_function_def = 134, - sym_preproc_params = 135, - sym_preproc_call = 136, - sym_preproc_if = 137, - sym_preproc_ifdef = 138, - sym_preproc_else = 139, - sym_preproc_elif = 140, - sym_preproc_if_in_field_declaration_list = 141, - sym_preproc_ifdef_in_field_declaration_list = 142, - sym_preproc_else_in_field_declaration_list = 143, - sym_preproc_elif_in_field_declaration_list = 144, - sym__preproc_expression = 145, - sym_preproc_parenthesized_expression = 146, - sym_preproc_defined = 147, - sym_preproc_unary_expression = 148, - sym_preproc_call_expression = 149, - sym_preproc_argument_list = 150, - sym_preproc_binary_expression = 151, - sym_function_definition = 152, - sym_declaration = 153, - sym_type_definition = 154, - sym__declaration_modifiers = 155, - sym__declaration_specifiers = 156, - sym_linkage_specification = 157, - sym_attribute_specifier = 158, - sym_attribute = 159, - sym_attribute_declaration = 160, - sym_ms_declspec_modifier = 161, - sym_ms_based_modifier = 162, - sym_ms_call_modifier = 163, - sym_ms_unaligned_ptr_modifier = 164, - sym_ms_pointer_modifier = 165, - sym_declaration_list = 166, - sym__declarator = 167, - sym__field_declarator = 168, - sym__type_declarator = 169, - sym__abstract_declarator = 170, - sym_parenthesized_declarator = 171, - sym_parenthesized_field_declarator = 172, - sym_parenthesized_type_declarator = 173, - sym_abstract_parenthesized_declarator = 174, - sym_attributed_declarator = 175, - sym_attributed_field_declarator = 176, - sym_attributed_type_declarator = 177, - sym_pointer_declarator = 178, - sym_pointer_field_declarator = 179, - sym_pointer_type_declarator = 180, - sym_abstract_pointer_declarator = 181, - sym_function_declarator = 182, - sym_function_field_declarator = 183, - sym_function_type_declarator = 184, - sym_abstract_function_declarator = 185, - sym_array_declarator = 186, - sym_array_field_declarator = 187, - sym_array_type_declarator = 188, - sym_abstract_array_declarator = 189, - sym_init_declarator = 190, - sym_compound_statement = 191, - sym_storage_class_specifier = 192, - sym_type_qualifier = 193, - sym__type_specifier = 194, - sym_sized_type_specifier = 195, - sym_enum_specifier = 196, - sym_enumerator_list = 197, - sym_struct_specifier = 198, - sym_union_specifier = 199, - sym_field_declaration_list = 200, - sym__field_declaration_list_item = 201, - sym_field_declaration = 202, - sym_bitfield_clause = 203, - sym_enumerator = 204, - sym_variadic_parameter = 205, - sym_parameter_list = 206, - sym_parameter_declaration = 207, - sym_attributed_statement = 208, - sym_labeled_statement = 209, - sym_expression_statement = 210, - sym_if_statement = 211, - sym_switch_statement = 212, - sym_case_statement = 213, - sym_while_statement = 214, - sym_do_statement = 215, - sym_for_statement = 216, - sym_return_statement = 217, - sym_break_statement = 218, - sym_continue_statement = 219, - sym_goto_statement = 220, - sym__expression = 221, - sym_comma_expression = 222, - sym_conditional_expression = 223, - sym_assignment_expression = 224, - sym_pointer_expression = 225, - sym_unary_expression = 226, - sym_binary_expression = 227, - sym_update_expression = 228, - sym_cast_expression = 229, - sym_type_descriptor = 230, - sym_sizeof_expression = 231, - sym_generic_expression = 232, - sym_subscript_expression = 233, - sym_call_expression = 234, - sym_argument_list = 235, - sym_field_expression = 236, - sym_compound_literal_expression = 237, - sym_parenthesized_expression = 238, - sym_initializer_list = 239, - sym_initializer_pair = 240, - sym_subscript_designator = 241, - sym_field_designator = 242, - sym_char_literal = 243, - sym_concatenated_string = 244, - sym_string_literal = 245, - sym__empty_declaration = 246, - sym_macro_type_specifier = 247, - aux_sym_translation_unit_repeat1 = 248, - aux_sym_preproc_params_repeat1 = 249, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 250, - aux_sym_preproc_argument_list_repeat1 = 251, - aux_sym_declaration_repeat1 = 252, - aux_sym_type_definition_repeat1 = 253, - aux_sym_type_definition_repeat2 = 254, - aux_sym__declaration_specifiers_repeat1 = 255, - aux_sym_attribute_declaration_repeat1 = 256, - aux_sym_attributed_declarator_repeat1 = 257, - aux_sym_pointer_declarator_repeat1 = 258, - aux_sym_function_declarator_repeat1 = 259, - aux_sym_sized_type_specifier_repeat1 = 260, - aux_sym_enumerator_list_repeat1 = 261, - aux_sym_field_declaration_repeat1 = 262, - aux_sym_parameter_list_repeat1 = 263, - aux_sym_case_statement_repeat1 = 264, - aux_sym_generic_expression_repeat1 = 265, - aux_sym_argument_list_repeat1 = 266, - aux_sym_initializer_list_repeat1 = 267, - aux_sym_initializer_pair_repeat1 = 268, - aux_sym_concatenated_string_repeat1 = 269, - aux_sym_string_literal_repeat1 = 270, - alias_sym_field_identifier = 271, - alias_sym_statement_identifier = 272, - alias_sym_type_identifier = 273, + anon_sym_offsetof = 109, + anon_sym__Generic = 110, + anon_sym_DOT = 111, + anon_sym_DASH_GT = 112, + sym_number_literal = 113, + anon_sym_L_SQUOTE = 114, + anon_sym_u_SQUOTE = 115, + anon_sym_U_SQUOTE = 116, + anon_sym_u8_SQUOTE = 117, + anon_sym_SQUOTE = 118, + aux_sym_char_literal_token1 = 119, + anon_sym_L_DQUOTE = 120, + anon_sym_u_DQUOTE = 121, + anon_sym_U_DQUOTE = 122, + anon_sym_u8_DQUOTE = 123, + anon_sym_DQUOTE = 124, + aux_sym_string_literal_token1 = 125, + sym_escape_sequence = 126, + sym_system_lib_string = 127, + sym_true = 128, + sym_false = 129, + sym_null = 130, + sym_comment = 131, + sym_translation_unit = 132, + sym_preproc_include = 133, + sym_preproc_def = 134, + sym_preproc_function_def = 135, + sym_preproc_params = 136, + sym_preproc_call = 137, + sym_preproc_if = 138, + sym_preproc_ifdef = 139, + sym_preproc_else = 140, + sym_preproc_elif = 141, + sym_preproc_if_in_field_declaration_list = 142, + sym_preproc_ifdef_in_field_declaration_list = 143, + sym_preproc_else_in_field_declaration_list = 144, + sym_preproc_elif_in_field_declaration_list = 145, + sym__preproc_expression = 146, + sym_preproc_parenthesized_expression = 147, + sym_preproc_defined = 148, + sym_preproc_unary_expression = 149, + sym_preproc_call_expression = 150, + sym_preproc_argument_list = 151, + sym_preproc_binary_expression = 152, + sym_function_definition = 153, + sym_declaration = 154, + sym_type_definition = 155, + sym__declaration_modifiers = 156, + sym__declaration_specifiers = 157, + sym_linkage_specification = 158, + sym_attribute_specifier = 159, + sym_attribute = 160, + sym_attribute_declaration = 161, + sym_ms_declspec_modifier = 162, + sym_ms_based_modifier = 163, + sym_ms_call_modifier = 164, + sym_ms_unaligned_ptr_modifier = 165, + sym_ms_pointer_modifier = 166, + sym_declaration_list = 167, + sym__declarator = 168, + sym__field_declarator = 169, + sym__type_declarator = 170, + sym__abstract_declarator = 171, + sym_parenthesized_declarator = 172, + sym_parenthesized_field_declarator = 173, + sym_parenthesized_type_declarator = 174, + sym_abstract_parenthesized_declarator = 175, + sym_attributed_declarator = 176, + sym_attributed_field_declarator = 177, + sym_attributed_type_declarator = 178, + sym_pointer_declarator = 179, + sym_pointer_field_declarator = 180, + sym_pointer_type_declarator = 181, + sym_abstract_pointer_declarator = 182, + sym_function_declarator = 183, + sym_function_field_declarator = 184, + sym_function_type_declarator = 185, + sym_abstract_function_declarator = 186, + sym_array_declarator = 187, + sym_array_field_declarator = 188, + sym_array_type_declarator = 189, + sym_abstract_array_declarator = 190, + sym_init_declarator = 191, + sym_compound_statement = 192, + sym_storage_class_specifier = 193, + sym_type_qualifier = 194, + sym__type_specifier = 195, + sym_sized_type_specifier = 196, + sym_enum_specifier = 197, + sym_enumerator_list = 198, + sym_struct_specifier = 199, + sym_union_specifier = 200, + sym_field_declaration_list = 201, + sym__field_declaration_list_item = 202, + sym_field_declaration = 203, + sym_bitfield_clause = 204, + sym_enumerator = 205, + sym_variadic_parameter = 206, + sym_parameter_list = 207, + sym_parameter_declaration = 208, + sym_attributed_statement = 209, + sym_labeled_statement = 210, + sym_expression_statement = 211, + sym_if_statement = 212, + sym_switch_statement = 213, + sym_case_statement = 214, + sym_while_statement = 215, + sym_do_statement = 216, + sym_for_statement = 217, + sym_return_statement = 218, + sym_break_statement = 219, + sym_continue_statement = 220, + sym_goto_statement = 221, + sym__expression = 222, + sym_comma_expression = 223, + sym_conditional_expression = 224, + sym_assignment_expression = 225, + sym_pointer_expression = 226, + sym_unary_expression = 227, + sym_binary_expression = 228, + sym_update_expression = 229, + sym_cast_expression = 230, + sym_type_descriptor = 231, + sym_sizeof_expression = 232, + sym_offsetof_expression = 233, + sym_generic_expression = 234, + sym_subscript_expression = 235, + sym_call_expression = 236, + sym_argument_list = 237, + sym_field_expression = 238, + sym_compound_literal_expression = 239, + sym_parenthesized_expression = 240, + sym_initializer_list = 241, + sym_initializer_pair = 242, + sym_subscript_designator = 243, + sym_field_designator = 244, + sym_char_literal = 245, + sym_concatenated_string = 246, + sym_string_literal = 247, + sym__empty_declaration = 248, + sym_macro_type_specifier = 249, + aux_sym_translation_unit_repeat1 = 250, + aux_sym_preproc_params_repeat1 = 251, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 252, + aux_sym_preproc_argument_list_repeat1 = 253, + aux_sym_declaration_repeat1 = 254, + aux_sym_type_definition_repeat1 = 255, + aux_sym_type_definition_repeat2 = 256, + aux_sym__declaration_specifiers_repeat1 = 257, + aux_sym_attribute_declaration_repeat1 = 258, + aux_sym_attributed_declarator_repeat1 = 259, + aux_sym_pointer_declarator_repeat1 = 260, + aux_sym_function_declarator_repeat1 = 261, + aux_sym_sized_type_specifier_repeat1 = 262, + aux_sym_enumerator_list_repeat1 = 263, + aux_sym_field_declaration_repeat1 = 264, + aux_sym_parameter_list_repeat1 = 265, + aux_sym_case_statement_repeat1 = 266, + aux_sym_generic_expression_repeat1 = 267, + aux_sym_argument_list_repeat1 = 268, + aux_sym_initializer_list_repeat1 = 269, + aux_sym_initializer_pair_repeat1 = 270, + aux_sym_concatenated_string_repeat1 = 271, + aux_sym_string_literal_repeat1 = 272, + alias_sym_field_identifier = 273, + alias_sym_statement_identifier = 274, + alias_sym_type_identifier = 275, }; static const char * const ts_symbol_names[] = { @@ -402,6 +404,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", + [anon_sym_offsetof] = "offsetof", [anon_sym__Generic] = "_Generic", [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", @@ -525,6 +528,7 @@ static const char * const ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_type_descriptor] = "type_descriptor", [sym_sizeof_expression] = "sizeof_expression", + [sym_offsetof_expression] = "offsetof_expression", [sym_generic_expression] = "generic_expression", [sym_subscript_expression] = "subscript_expression", [sym_call_expression] = "call_expression", @@ -679,6 +683,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym_offsetof] = anon_sym_offsetof, [anon_sym__Generic] = anon_sym__Generic, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_DASH_GT] = anon_sym_DASH_GT, @@ -802,6 +807,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_type_descriptor] = sym_type_descriptor, [sym_sizeof_expression] = sym_sizeof_expression, + [sym_offsetof_expression] = sym_offsetof_expression, [sym_generic_expression] = sym_generic_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_call_expression] = sym_call_expression, @@ -1283,6 +1289,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_offsetof] = { + .visible = true, + .named = false, + }, [anon_sym__Generic] = { .visible = true, .named = false, @@ -1781,6 +1791,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_offsetof_expression] = { + .visible = true, + .named = true, + }, [sym_generic_expression] = { .visible = true, .named = true, @@ -1967,16 +1981,17 @@ enum { field_initializer = 13, field_label = 14, field_left = 15, - field_name = 16, - field_operator = 17, - field_parameters = 18, - field_path = 19, - field_prefix = 20, - field_right = 21, - field_size = 22, - field_type = 23, - field_update = 24, - field_value = 25, + field_member = 16, + field_name = 17, + field_operator = 18, + field_parameters = 19, + field_path = 20, + field_prefix = 21, + field_right = 22, + field_size = 23, + field_type = 24, + field_update = 25, + field_value = 26, }; static const char * const ts_field_names[] = { @@ -1996,6 +2011,7 @@ static const char * const ts_field_names[] = { [field_initializer] = "initializer", [field_label] = "label", [field_left] = "left", + [field_member] = "member", [field_name] = "name", [field_operator] = "operator", [field_parameters] = "parameters", @@ -2078,19 +2094,20 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [70] = {.index = 115, .length = 3}, [71] = {.index = 118, .length = 1}, [72] = {.index = 119, .length = 2}, - [73] = {.index = 121, .length = 1}, - [74] = {.index = 122, .length = 2}, + [73] = {.index = 121, .length = 2}, + [74] = {.index = 123, .length = 1}, [75] = {.index = 124, .length = 2}, [76] = {.index = 126, .length = 2}, [77] = {.index = 128, .length = 2}, - [78] = {.index = 130, .length = 3}, - [79] = {.index = 133, .length = 3}, - [80] = {.index = 136, .length = 2}, - [81] = {.index = 138, .length = 3}, - [82] = {.index = 141, .length = 4}, - [83] = {.index = 145, .length = 3}, - [84] = {.index = 148, .length = 3}, - [85] = {.index = 151, .length = 4}, + [78] = {.index = 130, .length = 2}, + [79] = {.index = 132, .length = 3}, + [80] = {.index = 135, .length = 3}, + [81] = {.index = 138, .length = 2}, + [82] = {.index = 140, .length = 3}, + [83] = {.index = 143, .length = 4}, + [84] = {.index = 147, .length = 3}, + [85] = {.index = 150, .length = 3}, + [86] = {.index = 153, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2283,48 +2300,51 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 5}, {field_initializer, 2}, [121] = + {field_member, 4}, + {field_type, 2}, + [123] = {field_declarator, 4}, - [122] = + [124] = {field_declarator, 0}, {field_size, 3}, - [124] = + [126] = {field_designator, 0}, {field_value, 2}, - [126] = + [128] = {field_body, 6}, {field_update, 4}, - [128] = + [130] = {field_body, 6}, {field_condition, 3}, - [130] = + [132] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [133] = + [135] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [136] = + [138] = {field_body, 6}, {field_initializer, 2}, - [138] = + [140] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [141] = + [143] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [145] = + [147] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [148] = + [150] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [151] = + [153] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, @@ -2366,6 +2386,9 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [69] = { [1] = alias_sym_field_identifier, }, + [73] = { + [4] = alias_sym_field_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2377,45 +2400,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 2, - [5] = 2, + [4] = 3, + [5] = 3, [6] = 6, - [7] = 7, - [8] = 2, - [9] = 7, - [10] = 6, - [11] = 11, - [12] = 6, - [13] = 7, - [14] = 11, - [15] = 15, - [16] = 11, - [17] = 11, - [18] = 7, - [19] = 6, + [7] = 2, + [8] = 8, + [9] = 8, + [10] = 3, + [11] = 2, + [12] = 12, + [13] = 12, + [14] = 12, + [15] = 8, + [16] = 12, + [17] = 17, + [18] = 2, + [19] = 8, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 20, + [24] = 21, [25] = 25, - [26] = 21, - [27] = 27, - [28] = 22, - [29] = 27, + [26] = 22, + [27] = 23, + [28] = 21, + [29] = 23, [30] = 25, - [31] = 27, - [32] = 25, - [33] = 33, - [34] = 27, - [35] = 22, - [36] = 21, - [37] = 21, - [38] = 25, - [39] = 20, - [40] = 20, - [41] = 41, - [42] = 22, + [31] = 22, + [32] = 20, + [33] = 25, + [34] = 34, + [35] = 23, + [36] = 20, + [37] = 20, + [38] = 38, + [39] = 39, + [40] = 25, + [41] = 22, + [42] = 21, [43] = 43, [44] = 44, [45] = 45, @@ -2424,18 +2447,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [48] = 47, [49] = 46, [50] = 46, - [51] = 44, + [51] = 43, [52] = 43, - [53] = 45, - [54] = 46, - [55] = 47, + [53] = 47, + [54] = 45, + [55] = 44, [56] = 43, - [57] = 44, - [58] = 45, + [57] = 46, + [58] = 47, [59] = 44, - [60] = 43, + [60] = 44, [61] = 45, - [62] = 47, + [62] = 45, [63] = 63, [64] = 63, [65] = 63, @@ -2496,265 +2519,265 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 120, [121] = 121, [122] = 122, - [123] = 123, + [123] = 67, [124] = 124, - [125] = 98, - [126] = 91, - [127] = 88, - [128] = 103, - [129] = 85, - [130] = 77, - [131] = 79, - [132] = 82, - [133] = 81, - [134] = 92, - [135] = 84, - [136] = 80, - [137] = 101, - [138] = 96, - [139] = 68, - [140] = 86, - [141] = 87, - [142] = 101, - [143] = 73, - [144] = 102, - [145] = 75, - [146] = 74, - [147] = 94, - [148] = 91, - [149] = 94, - [150] = 73, - [151] = 75, - [152] = 68, - [153] = 97, - [154] = 76, - [155] = 95, - [156] = 83, - [157] = 90, - [158] = 92, - [159] = 93, - [160] = 72, - [161] = 74, - [162] = 76, - [163] = 81, - [164] = 83, - [165] = 84, - [166] = 103, - [167] = 97, - [168] = 69, - [169] = 93, - [170] = 88, + [125] = 125, + [126] = 70, + [127] = 95, + [128] = 100, + [129] = 129, + [130] = 130, + [131] = 130, + [132] = 88, + [133] = 101, + [134] = 134, + [135] = 135, + [136] = 85, + [137] = 103, + [138] = 102, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 141, + [144] = 93, + [145] = 99, + [146] = 146, + [147] = 93, + [148] = 92, + [149] = 149, + [150] = 88, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 92, + [155] = 151, + [156] = 98, + [157] = 157, + [158] = 158, + [159] = 97, + [160] = 160, + [161] = 94, + [162] = 162, + [163] = 68, + [164] = 162, + [165] = 160, + [166] = 83, + [167] = 96, + [168] = 102, + [169] = 103, + [170] = 71, [171] = 85, - [172] = 95, - [173] = 80, - [174] = 72, - [175] = 89, - [176] = 70, - [177] = 102, - [178] = 99, - [179] = 100, - [180] = 67, - [181] = 98, - [182] = 69, - [183] = 69, - [184] = 83, - [185] = 76, - [186] = 78, - [187] = 100, - [188] = 87, - [189] = 78, - [190] = 86, - [191] = 71, - [192] = 98, - [193] = 74, - [194] = 82, - [195] = 72, - [196] = 90, - [197] = 79, - [198] = 99, - [199] = 100, - [200] = 92, - [201] = 77, - [202] = 99, - [203] = 70, - [204] = 70, - [205] = 68, - [206] = 80, - [207] = 101, - [208] = 90, - [209] = 102, - [210] = 89, - [211] = 96, - [212] = 75, - [213] = 96, - [214] = 85, - [215] = 81, - [216] = 78, - [217] = 89, - [218] = 86, - [219] = 91, - [220] = 88, - [221] = 87, - [222] = 71, - [223] = 95, - [224] = 93, - [225] = 71, - [226] = 97, - [227] = 103, - [228] = 82, - [229] = 94, - [230] = 73, - [231] = 79, - [232] = 84, + [172] = 72, + [173] = 135, + [174] = 73, + [175] = 74, + [176] = 176, + [177] = 75, + [178] = 76, + [179] = 95, + [180] = 78, + [181] = 158, + [182] = 157, + [183] = 183, + [184] = 91, + [185] = 140, + [186] = 153, + [187] = 152, + [188] = 149, + [189] = 130, + [190] = 183, + [191] = 87, + [192] = 90, + [193] = 183, + [194] = 100, + [195] = 68, + [196] = 94, + [197] = 89, + [198] = 146, + [199] = 86, + [200] = 69, + [201] = 142, + [202] = 84, + [203] = 101, + [204] = 99, + [205] = 176, + [206] = 140, + [207] = 98, + [208] = 97, + [209] = 160, + [210] = 139, + [211] = 82, + [212] = 162, + [213] = 81, + [214] = 83, + [215] = 80, + [216] = 96, + [217] = 72, + [218] = 158, + [219] = 151, + [220] = 157, + [221] = 91, + [222] = 153, + [223] = 152, + [224] = 79, + [225] = 141, + [226] = 149, + [227] = 90, + [228] = 129, + [229] = 135, + [230] = 89, + [231] = 70, + [232] = 71, [233] = 77, - [234] = 234, - [235] = 111, - [236] = 236, - [237] = 123, - [238] = 238, - [239] = 104, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 121, - [245] = 115, - [246] = 122, - [247] = 114, - [248] = 107, - [249] = 121, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 241, - [254] = 122, - [255] = 255, - [256] = 243, - [257] = 250, - [258] = 124, - [259] = 252, - [260] = 260, - [261] = 243, - [262] = 255, - [263] = 116, - [264] = 260, - [265] = 242, - [266] = 238, - [267] = 250, - [268] = 240, - [269] = 269, - [270] = 113, - [271] = 271, - [272] = 271, - [273] = 105, - [274] = 236, - [275] = 275, - [276] = 276, - [277] = 105, - [278] = 269, - [279] = 241, - [280] = 124, - [281] = 251, - [282] = 122, - [283] = 238, - [284] = 123, - [285] = 285, - [286] = 242, - [287] = 120, - [288] = 288, - [289] = 289, - [290] = 271, - [291] = 240, - [292] = 243, - [293] = 288, - [294] = 118, - [295] = 119, - [296] = 106, - [297] = 108, - [298] = 288, - [299] = 120, - [300] = 234, - [301] = 234, - [302] = 288, - [303] = 289, - [304] = 234, - [305] = 285, - [306] = 110, - [307] = 238, - [308] = 108, - [309] = 109, - [310] = 275, - [311] = 276, - [312] = 109, + [234] = 176, + [235] = 146, + [236] = 72, + [237] = 86, + [238] = 69, + [239] = 129, + [240] = 134, + [241] = 142, + [242] = 73, + [243] = 74, + [244] = 77, + [245] = 134, + [246] = 79, + [247] = 80, + [248] = 81, + [249] = 82, + [250] = 139, + [251] = 140, + [252] = 75, + [253] = 84, + [254] = 142, + [255] = 69, + [256] = 86, + [257] = 146, + [258] = 89, + [259] = 90, + [260] = 149, + [261] = 152, + [262] = 153, + [263] = 76, + [264] = 134, + [265] = 91, + [266] = 77, + [267] = 157, + [268] = 158, + [269] = 95, + [270] = 78, + [271] = 96, + [272] = 88, + [273] = 162, + [274] = 160, + [275] = 97, + [276] = 98, + [277] = 87, + [278] = 99, + [279] = 101, + [280] = 129, + [281] = 100, + [282] = 176, + [283] = 79, + [284] = 135, + [285] = 94, + [286] = 68, + [287] = 85, + [288] = 84, + [289] = 103, + [290] = 183, + [291] = 102, + [292] = 80, + [293] = 141, + [294] = 87, + [295] = 93, + [296] = 81, + [297] = 92, + [298] = 151, + [299] = 83, + [300] = 82, + [301] = 70, + [302] = 71, + [303] = 78, + [304] = 139, + [305] = 130, + [306] = 76, + [307] = 75, + [308] = 74, + [309] = 73, + [310] = 107, + [311] = 105, + [312] = 105, [313] = 120, - [314] = 123, - [315] = 124, - [316] = 250, - [317] = 271, + [314] = 104, + [315] = 125, + [316] = 124, + [317] = 120, [318] = 119, - [319] = 121, - [320] = 114, - [321] = 240, + [319] = 122, + [320] = 121, + [321] = 117, [322] = 116, - [323] = 110, - [324] = 118, - [325] = 289, - [326] = 252, - [327] = 107, - [328] = 118, + [323] = 115, + [324] = 104, + [325] = 124, + [326] = 125, + [327] = 120, + [328] = 108, [329] = 119, - [330] = 255, - [331] = 117, - [332] = 117, - [333] = 110, - [334] = 285, - [335] = 260, - [336] = 115, - [337] = 108, - [338] = 241, - [339] = 104, + [330] = 108, + [331] = 105, + [332] = 118, + [333] = 117, + [334] = 106, + [335] = 107, + [336] = 104, + [337] = 121, + [338] = 113, + [339] = 112, [340] = 111, - [341] = 289, - [342] = 106, - [343] = 251, + [341] = 109, + [342] = 114, + [343] = 109, [344] = 111, - [345] = 242, - [346] = 104, - [347] = 115, - [348] = 105, - [349] = 113, - [350] = 117, - [351] = 236, - [352] = 276, - [353] = 269, - [354] = 114, - [355] = 275, - [356] = 285, - [357] = 107, - [358] = 276, - [359] = 113, - [360] = 109, - [361] = 106, - [362] = 269, - [363] = 275, - [364] = 236, - [365] = 112, - [366] = 112, + [345] = 106, + [346] = 119, + [347] = 107, + [348] = 110, + [349] = 110, + [350] = 108, + [351] = 118, + [352] = 112, + [353] = 115, + [354] = 112, + [355] = 114, + [356] = 124, + [357] = 110, + [358] = 125, + [359] = 115, + [360] = 117, + [361] = 121, + [362] = 118, + [363] = 122, + [364] = 122, + [365] = 106, + [366] = 109, [367] = 116, - [368] = 260, - [369] = 255, - [370] = 252, - [371] = 112, - [372] = 251, + [368] = 111, + [369] = 113, + [370] = 113, + [371] = 116, + [372] = 114, [373] = 373, - [374] = 374, - [375] = 374, - [376] = 373, - [377] = 67, - [378] = 373, - [379] = 374, + [374] = 373, + [375] = 373, + [376] = 376, + [377] = 376, + [378] = 376, + [379] = 67, [380] = 373, - [381] = 374, + [381] = 376, [382] = 382, [383] = 383, [384] = 67, @@ -2764,198 +2787,198 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [388] = 388, [389] = 389, [390] = 390, - [391] = 390, - [392] = 392, - [393] = 389, - [394] = 388, - [395] = 395, - [396] = 395, - [397] = 390, - [398] = 389, - [399] = 395, - [400] = 388, - [401] = 401, - [402] = 401, - [403] = 401, - [404] = 401, - [405] = 401, - [406] = 401, - [407] = 401, - [408] = 401, - [409] = 409, - [410] = 410, + [391] = 391, + [392] = 387, + [393] = 393, + [394] = 390, + [395] = 391, + [396] = 396, + [397] = 388, + [398] = 390, + [399] = 388, + [400] = 391, + [401] = 387, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 402, + [407] = 407, + [408] = 408, + [409] = 402, + [410] = 402, [411] = 411, [412] = 412, [413] = 413, - [414] = 414, + [414] = 402, [415] = 415, [416] = 416, - [417] = 417, - [418] = 418, + [417] = 402, + [418] = 402, [419] = 419, [420] = 420, - [421] = 421, + [421] = 402, [422] = 422, [423] = 423, [424] = 424, - [425] = 425, + [425] = 424, [426] = 426, - [427] = 411, - [428] = 411, + [427] = 427, + [428] = 424, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 432, + [433] = 433, [434] = 434, - [435] = 435, - [436] = 432, - [437] = 432, - [438] = 438, + [435] = 433, + [436] = 436, + [437] = 433, + [438] = 433, [439] = 439, [440] = 440, [441] = 441, [442] = 442, - [443] = 442, + [443] = 443, [444] = 444, - [445] = 445, - [446] = 446, + [445] = 439, + [446] = 441, [447] = 447, [448] = 448, - [449] = 449, - [450] = 446, + [449] = 440, + [450] = 439, [451] = 451, - [452] = 447, - [453] = 453, - [454] = 454, - [455] = 445, - [456] = 442, - [457] = 453, - [458] = 451, - [459] = 447, - [460] = 454, - [461] = 449, - [462] = 453, - [463] = 441, - [464] = 441, - [465] = 465, - [466] = 465, - [467] = 444, - [468] = 454, - [469] = 447, - [470] = 449, - [471] = 445, - [472] = 446, - [473] = 451, - [474] = 449, - [475] = 444, - [476] = 476, - [477] = 444, - [478] = 445, - [479] = 442, - [480] = 453, - [481] = 441, - [482] = 451, - [483] = 465, - [484] = 454, - [485] = 446, - [486] = 465, + [452] = 448, + [453] = 451, + [454] = 451, + [455] = 441, + [456] = 439, + [457] = 447, + [458] = 458, + [459] = 441, + [460] = 460, + [461] = 440, + [462] = 444, + [463] = 440, + [464] = 444, + [465] = 451, + [466] = 460, + [467] = 443, + [468] = 443, + [469] = 469, + [470] = 470, + [471] = 442, + [472] = 442, + [473] = 469, + [474] = 442, + [475] = 460, + [476] = 448, + [477] = 447, + [478] = 469, + [479] = 469, + [480] = 443, + [481] = 460, + [482] = 447, + [483] = 444, + [484] = 448, + [485] = 485, + [486] = 486, [487] = 487, [488] = 488, [489] = 489, - [490] = 489, + [490] = 490, [491] = 491, [492] = 492, - [493] = 489, + [493] = 493, [494] = 494, - [495] = 494, + [495] = 495, [496] = 496, - [497] = 492, + [497] = 497, [498] = 498, - [499] = 499, - [500] = 500, + [499] = 494, + [500] = 487, [501] = 501, [502] = 502, - [503] = 503, - [504] = 489, - [505] = 505, + [503] = 497, + [504] = 494, + [505] = 494, [506] = 506, [507] = 507, [508] = 508, [509] = 509, - [510] = 510, + [510] = 509, [511] = 511, - [512] = 511, - [513] = 510, - [514] = 508, + [512] = 512, + [513] = 513, + [514] = 514, [515] = 515, - [516] = 516, + [516] = 515, [517] = 517, [518] = 518, [519] = 519, - [520] = 520, - [521] = 519, + [520] = 519, + [521] = 514, [522] = 522, - [523] = 523, - [524] = 524, + [523] = 506, + [524] = 506, [525] = 525, - [526] = 526, - [527] = 509, - [528] = 409, + [526] = 525, + [527] = 527, + [528] = 517, [529] = 529, - [530] = 509, - [531] = 511, - [532] = 525, - [533] = 510, - [534] = 515, - [535] = 535, - [536] = 536, - [537] = 537, + [530] = 530, + [531] = 529, + [532] = 507, + [533] = 525, + [534] = 512, + [535] = 512, + [536] = 525, + [537] = 507, [538] = 538, - [539] = 516, - [540] = 536, - [541] = 517, - [542] = 518, - [543] = 543, - [544] = 520, - [545] = 519, + [539] = 527, + [540] = 519, + [541] = 541, + [542] = 527, + [543] = 541, + [544] = 514, + [545] = 522, [546] = 546, - [547] = 547, - [548] = 536, - [549] = 522, - [550] = 523, - [551] = 524, - [552] = 515, - [553] = 526, - [554] = 536, - [555] = 509, - [556] = 510, - [557] = 538, - [558] = 526, - [559] = 525, - [560] = 524, - [561] = 523, - [562] = 547, - [563] = 526, - [564] = 525, - [565] = 524, - [566] = 523, - [567] = 522, - [568] = 538, - [569] = 518, - [570] = 516, - [571] = 520, - [572] = 519, - [573] = 520, - [574] = 518, - [575] = 517, - [576] = 516, - [577] = 515, - [578] = 522, - [579] = 511, - [580] = 580, + [547] = 513, + [548] = 511, + [549] = 515, + [550] = 541, + [551] = 513, + [552] = 529, + [553] = 522, + [554] = 518, + [555] = 555, + [556] = 518, + [557] = 517, + [558] = 558, + [559] = 559, + [560] = 513, + [561] = 561, + [562] = 515, + [563] = 518, + [564] = 512, + [565] = 514, + [566] = 559, + [567] = 519, + [568] = 568, + [569] = 511, + [570] = 570, + [571] = 509, + [572] = 509, + [573] = 511, + [574] = 506, + [575] = 522, + [576] = 527, + [577] = 541, + [578] = 507, + [579] = 529, + [580] = 517, [581] = 538, - [582] = 517, + [582] = 422, [583] = 583, [584] = 584, [585] = 585, @@ -2994,250 +3017,250 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [618] = 618, [619] = 619, [620] = 620, - [621] = 601, - [622] = 382, + [621] = 621, + [622] = 583, [623] = 383, - [624] = 583, - [625] = 625, - [626] = 625, - [627] = 625, - [628] = 625, - [629] = 619, + [624] = 602, + [625] = 382, + [626] = 626, + [627] = 626, + [628] = 626, + [629] = 626, [630] = 588, - [631] = 592, - [632] = 609, + [631] = 631, + [632] = 612, [633] = 610, - [634] = 590, - [635] = 593, - [636] = 636, - [637] = 591, - [638] = 608, - [639] = 597, - [640] = 598, - [641] = 636, - [642] = 636, - [643] = 600, - [644] = 602, - [645] = 645, - [646] = 586, - [647] = 587, - [648] = 636, - [649] = 605, - [650] = 584, - [651] = 615, - [652] = 611, - [653] = 585, - [654] = 601, - [655] = 655, - [656] = 589, - [657] = 657, + [634] = 591, + [635] = 609, + [636] = 590, + [637] = 608, + [638] = 587, + [639] = 607, + [640] = 631, + [641] = 604, + [642] = 585, + [643] = 598, + [644] = 631, + [645] = 601, + [646] = 619, + [647] = 614, + [648] = 599, + [649] = 649, + [650] = 618, + [651] = 613, + [652] = 631, + [653] = 602, + [654] = 654, + [655] = 586, + [656] = 584, + [657] = 603, [658] = 658, [659] = 659, [660] = 660, [661] = 661, - [662] = 382, - [663] = 117, - [664] = 664, - [665] = 588, - [666] = 619, - [667] = 667, - [668] = 587, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 602, - [673] = 121, - [674] = 108, + [662] = 662, + [663] = 663, + [664] = 599, + [665] = 665, + [666] = 114, + [667] = 116, + [668] = 121, + [669] = 125, + [670] = 124, + [671] = 112, + [672] = 612, + [673] = 673, + [674] = 674, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 110, - [679] = 679, - [680] = 118, - [681] = 659, - [682] = 584, - [683] = 615, - [684] = 600, + [676] = 610, + [677] = 609, + [678] = 588, + [679] = 608, + [680] = 607, + [681] = 604, + [682] = 382, + [683] = 601, + [684] = 585, [685] = 685, - [686] = 598, - [687] = 597, - [688] = 688, + [686] = 618, + [687] = 660, + [688] = 598, [689] = 689, - [690] = 593, - [691] = 608, + [690] = 690, + [691] = 691, [692] = 692, - [693] = 590, - [694] = 586, - [695] = 383, - [696] = 696, + [693] = 693, + [694] = 614, + [695] = 695, + [696] = 383, [697] = 697, - [698] = 119, + [698] = 698, [699] = 699, [700] = 700, - [701] = 440, + [701] = 701, [702] = 702, - [703] = 703, - [704] = 439, - [705] = 110, - [706] = 117, - [707] = 707, - [708] = 667, - [709] = 121, - [710] = 710, - [711] = 667, - [712] = 685, - [713] = 688, - [714] = 669, - [715] = 671, - [716] = 685, - [717] = 692, - [718] = 688, + [703] = 489, + [704] = 704, + [705] = 493, + [706] = 112, + [707] = 675, + [708] = 674, + [709] = 691, + [710] = 121, + [711] = 673, + [712] = 116, + [713] = 114, + [714] = 698, + [715] = 697, + [716] = 716, + [717] = 697, + [718] = 663, [719] = 689, - [720] = 670, - [721] = 721, - [722] = 697, - [723] = 108, - [724] = 110, - [725] = 707, - [726] = 707, - [727] = 727, - [728] = 676, - [729] = 677, - [730] = 689, - [731] = 707, + [720] = 665, + [721] = 685, + [722] = 699, + [723] = 723, + [724] = 695, + [725] = 690, + [726] = 691, + [727] = 690, + [728] = 695, + [729] = 699, + [730] = 698, + [731] = 675, [732] = 732, - [733] = 670, - [734] = 664, - [735] = 675, - [736] = 118, - [737] = 119, - [738] = 696, - [739] = 697, - [740] = 108, - [741] = 692, - [742] = 676, - [743] = 677, - [744] = 664, - [745] = 117, - [746] = 746, - [747] = 118, - [748] = 119, + [733] = 733, + [734] = 689, + [735] = 735, + [736] = 732, + [737] = 732, + [738] = 693, + [739] = 125, + [740] = 124, + [741] = 114, + [742] = 663, + [743] = 743, + [744] = 732, + [745] = 674, + [746] = 112, + [747] = 124, + [748] = 673, [749] = 749, - [750] = 696, - [751] = 121, - [752] = 669, - [753] = 671, - [754] = 675, - [755] = 732, - [756] = 756, + [750] = 685, + [751] = 125, + [752] = 693, + [753] = 121, + [754] = 116, + [755] = 743, + [756] = 665, [757] = 757, [758] = 758, [759] = 759, [760] = 760, [761] = 761, - [762] = 762, - [763] = 757, - [764] = 764, + [762] = 761, + [763] = 759, + [764] = 760, [765] = 765, - [766] = 765, - [767] = 767, + [766] = 766, + [767] = 761, [768] = 768, [769] = 769, - [770] = 762, + [770] = 759, [771] = 771, [772] = 772, - [773] = 768, - [774] = 774, - [775] = 756, + [773] = 773, + [774] = 761, + [775] = 760, [776] = 776, - [777] = 777, - [778] = 778, - [779] = 762, - [780] = 774, - [781] = 771, - [782] = 772, - [783] = 771, - [784] = 784, - [785] = 772, - [786] = 776, - [787] = 762, + [777] = 772, + [778] = 769, + [779] = 779, + [780] = 776, + [781] = 781, + [782] = 782, + [783] = 772, + [784] = 773, + [785] = 785, + [786] = 759, + [787] = 773, [788] = 765, - [789] = 772, - [790] = 759, - [791] = 778, - [792] = 784, - [793] = 757, - [794] = 794, - [795] = 764, - [796] = 776, - [797] = 764, - [798] = 757, - [799] = 768, - [800] = 759, - [801] = 756, - [802] = 784, - [803] = 778, - [804] = 756, - [805] = 778, - [806] = 759, - [807] = 765, - [808] = 768, - [809] = 784, - [810] = 776, - [811] = 771, - [812] = 764, - [813] = 593, + [789] = 765, + [790] = 768, + [791] = 776, + [792] = 760, + [793] = 781, + [794] = 771, + [795] = 785, + [796] = 766, + [797] = 766, + [798] = 769, + [799] = 771, + [800] = 768, + [801] = 776, + [802] = 771, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 769, + [807] = 781, + [808] = 781, + [809] = 768, + [810] = 766, + [811] = 765, + [812] = 773, + [813] = 772, [814] = 814, [815] = 815, - [816] = 816, - [817] = 817, + [816] = 614, + [817] = 598, [818] = 818, - [819] = 819, + [819] = 815, [820] = 820, - [821] = 814, + [821] = 821, [822] = 822, [823] = 823, - [824] = 824, - [825] = 619, + [824] = 815, + [825] = 585, [826] = 826, - [827] = 827, + [827] = 814, [828] = 828, - [829] = 814, + [829] = 829, [830] = 830, - [831] = 608, - [832] = 832, + [831] = 831, + [832] = 599, [833] = 833, [834] = 834, - [835] = 835, - [836] = 586, - [837] = 835, - [838] = 587, - [839] = 839, - [840] = 584, - [841] = 841, - [842] = 588, - [843] = 590, - [844] = 844, - [845] = 845, + [835] = 604, + [836] = 607, + [837] = 837, + [838] = 838, + [839] = 608, + [840] = 840, + [841] = 814, + [842] = 842, + [843] = 843, + [844] = 601, + [845] = 815, [846] = 846, - [847] = 597, - [848] = 835, + [847] = 618, + [848] = 609, [849] = 849, - [850] = 850, + [850] = 814, [851] = 851, - [852] = 835, - [853] = 598, - [854] = 814, + [852] = 852, + [853] = 610, + [854] = 854, [855] = 855, - [856] = 600, + [856] = 612, [857] = 857, - [858] = 602, - [859] = 615, - [860] = 860, - [861] = 860, - [862] = 860, - [863] = 860, - [864] = 864, + [858] = 858, + [859] = 859, + [860] = 588, + [861] = 861, + [862] = 861, + [863] = 861, + [864] = 861, [865] = 865, [866] = 866, [867] = 867, @@ -3247,16 +3270,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [871] = 871, [872] = 872, [873] = 873, - [874] = 872, - [875] = 873, - [876] = 658, - [877] = 872, - [878] = 878, - [879] = 873, - [880] = 873, - [881] = 872, - [882] = 882, - [883] = 883, + [874] = 658, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 877, + [879] = 877, + [880] = 876, + [881] = 876, + [882] = 876, + [883] = 877, [884] = 884, [885] = 885, [886] = 886, @@ -3280,12 +3303,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [904] = 904, [905] = 905, [906] = 906, - [907] = 904, - [908] = 906, - [909] = 905, - [910] = 910, + [907] = 907, + [908] = 908, + [909] = 908, + [910] = 906, [911] = 911, - [912] = 912, + [912] = 911, [913] = 913, [914] = 914, [915] = 915, @@ -3302,181 +3325,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [926] = 926, [927] = 927, [928] = 928, - [929] = 924, + [929] = 929, [930] = 930, [931] = 931, - [932] = 932, + [932] = 914, [933] = 933, [934] = 934, [935] = 935, - [936] = 925, + [936] = 936, [937] = 937, [938] = 938, - [939] = 928, - [940] = 923, + [939] = 926, + [940] = 928, [941] = 941, [942] = 942, - [943] = 926, - [944] = 938, + [943] = 914, + [944] = 944, [945] = 945, - [946] = 913, - [947] = 914, - [948] = 915, - [949] = 916, + [946] = 941, + [947] = 947, + [948] = 942, + [949] = 914, [950] = 950, - [951] = 917, - [952] = 918, - [953] = 927, - [954] = 954, - [955] = 919, - [956] = 927, - [957] = 957, + [951] = 913, + [952] = 930, + [953] = 936, + [954] = 934, + [955] = 955, + [956] = 933, + [957] = 931, [958] = 958, - [959] = 594, + [959] = 959, [960] = 960, [961] = 961, - [962] = 927, - [963] = 923, + [962] = 962, + [963] = 963, [964] = 964, [965] = 965, - [966] = 920, - [967] = 967, - [968] = 922, - [969] = 969, - [970] = 970, - [971] = 921, - [972] = 930, + [966] = 966, + [967] = 616, + [968] = 923, + [969] = 930, + [970] = 960, + [971] = 947, + [972] = 972, [973] = 973, [974] = 974, - [975] = 932, - [976] = 933, - [977] = 934, - [978] = 964, - [979] = 979, - [980] = 979, - [981] = 935, - [982] = 937, - [983] = 941, - [984] = 984, - [985] = 945, - [986] = 950, - [987] = 957, - [988] = 594, - [989] = 989, - [990] = 958, - [991] = 991, - [992] = 960, - [993] = 961, - [994] = 994, - [995] = 995, + [975] = 929, + [976] = 976, + [977] = 972, + [978] = 978, + [979] = 978, + [980] = 917, + [981] = 981, + [982] = 982, + [983] = 976, + [984] = 749, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 963, + [989] = 978, + [990] = 916, + [991] = 961, + [992] = 973, + [993] = 981, + [994] = 915, + [995] = 944, [996] = 996, - [997] = 997, - [998] = 998, - [999] = 931, - [1000] = 1000, - [1001] = 1001, - [1002] = 973, - [1003] = 979, - [1004] = 970, - [1005] = 970, - [1006] = 1006, - [1007] = 979, + [997] = 981, + [998] = 978, + [999] = 959, + [1000] = 616, + [1001] = 919, + [1002] = 1002, + [1003] = 1003, + [1004] = 918, + [1005] = 927, + [1006] = 920, + [1007] = 921, [1008] = 1008, - [1009] = 1009, + [1009] = 922, [1010] = 1010, - [1011] = 1011, - [1012] = 721, - [1013] = 1013, + [1011] = 924, + [1012] = 1012, + [1013] = 925, [1014] = 1014, [1015] = 1015, - [1016] = 1015, - [1017] = 1015, - [1018] = 1018, - [1019] = 1019, - [1020] = 1018, - [1021] = 1019, + [1016] = 1016, + [1017] = 1017, + [1018] = 1017, + [1019] = 1017, + [1020] = 1020, + [1021] = 1021, [1022] = 1022, - [1023] = 1023, - [1024] = 1023, - [1025] = 1023, - [1026] = 1019, - [1027] = 1019, - [1028] = 1018, - [1029] = 1018, - [1030] = 1023, - [1031] = 1031, - [1032] = 1032, + [1023] = 1020, + [1024] = 1022, + [1025] = 1021, + [1026] = 1026, + [1027] = 1022, + [1028] = 1021, + [1029] = 1022, + [1030] = 1020, + [1031] = 1020, + [1032] = 1021, [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 1032, + [1037] = 1037, [1038] = 1038, - [1039] = 1036, - [1040] = 1040, - [1041] = 1034, - [1042] = 1034, + [1039] = 1039, + [1040] = 1033, + [1041] = 1035, + [1042] = 1033, [1043] = 1043, [1044] = 1044, - [1045] = 1034, - [1046] = 1032, - [1047] = 1032, - [1048] = 1033, - [1049] = 1033, - [1050] = 1050, - [1051] = 1036, - [1052] = 1036, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1045, + [1049] = 1049, + [1050] = 1035, + [1051] = 1033, + [1052] = 1039, [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, + [1056] = 1039, + [1057] = 1035, + [1058] = 1045, [1059] = 1059, - [1060] = 1060, + [1060] = 1039, [1061] = 1061, [1062] = 1062, - [1063] = 1062, - [1064] = 1062, + [1063] = 1063, + [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1062, - [1069] = 1069, - [1070] = 1070, + [1068] = 1068, + [1069] = 1061, + [1070] = 1061, [1071] = 1071, - [1072] = 1072, + [1072] = 1061, [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1073, - [1079] = 1071, - [1080] = 1080, - [1081] = 1072, - [1082] = 1082, - [1083] = 1073, - [1084] = 1073, - [1085] = 1071, - [1086] = 1071, - [1087] = 1072, - [1088] = 1088, - [1089] = 1072, + [1078] = 1078, + [1079] = 1079, + [1080] = 1074, + [1081] = 1079, + [1082] = 1074, + [1083] = 1077, + [1084] = 1079, + [1085] = 1077, + [1086] = 1086, + [1087] = 1077, + [1088] = 1074, + [1089] = 1089, [1090] = 1090, - [1091] = 1091, + [1091] = 1079, [1092] = 1092, - [1093] = 1091, + [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1091, - [1098] = 1098, - [1099] = 1099, + [1097] = 1097, + [1098] = 1095, + [1099] = 1095, [1100] = 1100, - [1101] = 1091, + [1101] = 1101, [1102] = 1102, - [1103] = 1103, + [1103] = 1095, [1104] = 1104, [1105] = 1105, [1106] = 1106, @@ -3508,40 +3531,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1132] = 1132, [1133] = 1133, [1134] = 1134, - [1135] = 1126, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1126, + [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 1142, + [1142] = 1137, [1143] = 1143, [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 1147, + [1147] = 1137, [1148] = 1148, [1149] = 1149, - [1150] = 1149, + [1150] = 1150, [1151] = 1151, - [1152] = 1152, + [1152] = 1151, [1153] = 1153, - [1154] = 1153, - [1155] = 1155, + [1154] = 1154, + [1155] = 1151, [1156] = 1156, - [1157] = 1153, - [1158] = 1153, - [1159] = 1153, - [1160] = 1149, + [1157] = 1151, + [1158] = 1154, + [1159] = 1159, + [1160] = 1153, [1161] = 1161, - [1162] = 1162, - [1163] = 1155, - [1164] = 1153, - [1165] = 1155, - [1166] = 1153, - [1167] = 1167, - [1168] = 1168, + [1162] = 1153, + [1163] = 1163, + [1164] = 1151, + [1165] = 1165, + [1166] = 1151, + [1167] = 1154, + [1168] = 1151, [1169] = 1169, [1170] = 1170, [1171] = 1171, @@ -3550,57 +3573,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1174] = 1174, [1175] = 1175, [1176] = 1176, - [1177] = 1170, - [1178] = 1172, - [1179] = 1172, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, - [1185] = 1185, + [1185] = 1183, [1186] = 1186, - [1187] = 1182, - [1188] = 1188, - [1189] = 1189, + [1187] = 1172, + [1188] = 1177, + [1189] = 1173, [1190] = 1190, [1191] = 1191, - [1192] = 1190, + [1192] = 1192, [1193] = 1193, - [1194] = 1183, + [1194] = 1190, [1195] = 1195, - [1196] = 1196, - [1197] = 1188, + [1196] = 1179, + [1197] = 1175, [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1185, - [1202] = 1184, - [1203] = 1184, + [1201] = 1201, + [1202] = 1177, + [1203] = 1179, [1204] = 1183, [1205] = 1190, - [1206] = 1184, - [1207] = 1185, - [1208] = 1183, - [1209] = 1209, - [1210] = 1170, - [1211] = 1185, - [1212] = 1188, - [1213] = 1213, - [1214] = 1214, - [1215] = 1175, - [1216] = 1182, - [1217] = 1217, - [1218] = 1172, + [1206] = 1206, + [1207] = 1183, + [1208] = 1177, + [1209] = 1184, + [1210] = 1210, + [1211] = 1195, + [1212] = 1212, + [1213] = 1175, + [1214] = 1175, + [1215] = 1195, + [1216] = 1184, + [1217] = 1195, + [1218] = 1184, [1219] = 1219, - [1220] = 1209, - [1221] = 1170, + [1220] = 1220, + [1221] = 1221, [1222] = 1222, [1223] = 1223, - [1224] = 1224, - [1225] = 1225, + [1224] = 1190, + [1225] = 1186, [1226] = 1226, - [1227] = 1190, + [1227] = 1186, [1228] = 1228, [1229] = 1229, [1230] = 1230, @@ -3610,62 +3633,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1237, + [1237] = 1233, [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, - [1242] = 1236, - [1243] = 1231, + [1242] = 1231, + [1243] = 1243, [1244] = 1244, - [1245] = 1240, - [1246] = 1244, - [1247] = 1241, - [1248] = 1235, - [1249] = 1229, - [1250] = 1241, - [1251] = 1240, - [1252] = 1244, - [1253] = 1229, - [1254] = 1240, - [1255] = 1255, - [1256] = 1241, - [1257] = 1240, - [1258] = 1258, - [1259] = 1258, - [1260] = 1236, - [1261] = 1240, - [1262] = 1262, - [1263] = 1263, - [1264] = 1231, - [1265] = 1239, - [1266] = 1235, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1233, + [1250] = 1232, + [1251] = 1251, + [1252] = 1232, + [1253] = 1232, + [1254] = 1236, + [1255] = 1239, + [1256] = 1256, + [1257] = 1257, + [1258] = 1245, + [1259] = 1239, + [1260] = 1244, + [1261] = 1261, + [1262] = 1251, + [1263] = 1244, + [1264] = 1264, + [1265] = 1265, + [1266] = 1248, [1267] = 1267, - [1268] = 1244, + [1268] = 1268, [1269] = 1269, - [1270] = 1270, - [1271] = 1244, - [1272] = 1244, - [1273] = 1239, - [1274] = 1244, - [1275] = 1237, - [1276] = 1276, - [1277] = 1239, - [1278] = 1278, - [1279] = 1279, - [1280] = 1231, - [1281] = 1236, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1237, + [1270] = 1245, + [1271] = 1233, + [1272] = 1239, + [1273] = 1273, + [1274] = 1261, + [1275] = 1245, + [1276] = 1231, + [1277] = 1231, + [1278] = 1232, + [1279] = 1231, + [1280] = 1248, + [1281] = 1232, + [1282] = 1231, + [1283] = 1261, + [1284] = 1232, + [1285] = 1244, [1286] = 1286, [1287] = 1287, [1288] = 1288, - [1289] = 1240, - [1290] = 1229, - [1291] = 1291, - [1292] = 1292, + [1289] = 1248, + [1290] = 1290, + [1291] = 1251, + [1292] = 1231, [1293] = 1293, [1294] = 1294, [1295] = 1295, @@ -3675,199 +3698,205 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1299] = 1299, [1300] = 1300, [1301] = 1301, - [1302] = 1302, + [1302] = 1300, [1303] = 1303, [1304] = 1304, - [1305] = 1305, + [1305] = 1297, [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1297, - [1310] = 1310, - [1311] = 1291, + [1309] = 1309, + [1310] = 1309, + [1311] = 1311, [1312] = 1312, - [1313] = 1313, - [1314] = 1302, - [1315] = 1313, - [1316] = 1294, + [1313] = 1293, + [1314] = 1314, + [1315] = 1299, + [1316] = 1307, [1317] = 1317, [1318] = 1318, - [1319] = 1313, - [1320] = 1302, - [1321] = 1321, - [1322] = 1294, - [1323] = 1323, + [1319] = 1298, + [1320] = 1320, + [1321] = 1320, + [1322] = 1322, + [1323] = 1311, [1324] = 1324, - [1325] = 1313, - [1326] = 1302, + [1325] = 1298, + [1326] = 1320, [1327] = 1327, - [1328] = 1294, - [1329] = 1310, + [1328] = 1322, + [1329] = 1329, [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1307, - [1334] = 1305, + [1331] = 1298, + [1332] = 1320, + [1333] = 1333, + [1334] = 1322, [1335] = 1335, - [1336] = 1297, + [1336] = 1336, [1337] = 1337, - [1338] = 1303, + [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1341, - [1342] = 1302, + [1341] = 1322, + [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1299, - [1346] = 1296, - [1347] = 1347, - [1348] = 1348, + [1345] = 1345, + [1346] = 1346, + [1347] = 1342, + [1348] = 1297, [1349] = 1349, - [1350] = 1293, - [1351] = 1306, - [1352] = 1352, - [1353] = 1298, - [1354] = 1295, - [1355] = 1294, - [1356] = 1339, - [1357] = 1357, - [1358] = 1298, - [1359] = 1302, - [1360] = 1357, - [1361] = 1361, - [1362] = 1362, - [1363] = 1317, - [1364] = 1312, - [1365] = 1294, + [1350] = 1300, + [1351] = 1351, + [1352] = 1296, + [1353] = 1353, + [1354] = 1354, + [1355] = 1308, + [1356] = 1317, + [1357] = 1299, + [1358] = 1296, + [1359] = 1353, + [1360] = 1306, + [1361] = 1329, + [1362] = 1345, + [1363] = 1295, + [1364] = 1342, + [1365] = 1322, [1366] = 1366, - [1367] = 1339, + [1367] = 1367, [1368] = 1368, - [1369] = 1313, - [1370] = 1295, - [1371] = 1371, - [1372] = 1318, - [1373] = 1373, - [1374] = 1321, - [1375] = 1323, - [1376] = 1324, - [1377] = 1377, - [1378] = 1327, - [1379] = 1379, - [1380] = 1380, - [1381] = 1310, - [1382] = 1332, - [1383] = 1307, - [1384] = 1362, - [1385] = 1291, + [1369] = 1369, + [1370] = 1309, + [1371] = 1311, + [1372] = 1372, + [1373] = 1368, + [1374] = 1374, + [1375] = 1327, + [1376] = 1345, + [1377] = 1351, + [1378] = 1342, + [1379] = 1330, + [1380] = 1372, + [1381] = 1322, + [1382] = 1320, + [1383] = 1340, + [1384] = 1384, + [1385] = 1314, [1386] = 1312, - [1387] = 1387, - [1388] = 1305, - [1389] = 1303, - [1390] = 1340, - [1391] = 1341, - [1392] = 1343, - [1393] = 1299, - [1394] = 1296, - [1395] = 1330, - [1396] = 1331, - [1397] = 1347, - [1398] = 1398, - [1399] = 1348, - [1400] = 1293, - [1401] = 1306, + [1387] = 1304, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1298, + [1392] = 1392, + [1393] = 1368, + [1394] = 1293, + [1395] = 1307, + [1396] = 1369, + [1397] = 1346, + [1398] = 1344, + [1399] = 1399, + [1400] = 1400, + [1401] = 1336, [1402] = 1337, - [1403] = 1352, - [1404] = 1298, - [1405] = 1405, - [1406] = 1295, - [1407] = 1366, - [1408] = 1294, - [1409] = 1352, - [1410] = 1317, - [1411] = 1306, - [1412] = 1371, - [1413] = 1373, - [1414] = 1339, - [1415] = 1297, - [1416] = 1371, - [1417] = 1368, - [1418] = 1373, - [1419] = 1419, - [1420] = 1302, - [1421] = 1377, - [1422] = 1362, - [1423] = 1330, - [1424] = 1331, - [1425] = 1313, - [1426] = 1291, - [1427] = 1312, - [1428] = 1337, - [1429] = 1368, - [1430] = 1419, - [1431] = 1313, - [1432] = 1318, - [1433] = 1321, - [1434] = 1293, - [1435] = 1323, - [1436] = 1324, - [1437] = 1327, - [1438] = 1371, - [1439] = 1439, - [1440] = 1373, + [1403] = 1403, + [1404] = 1335, + [1405] = 1333, + [1406] = 1406, + [1407] = 1324, + [1408] = 1343, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 493, + [1413] = 1413, + [1414] = 489, + [1415] = 1324, + [1416] = 1369, + [1417] = 1333, + [1418] = 1335, + [1419] = 1344, + [1420] = 1327, + [1421] = 1366, + [1422] = 1351, + [1423] = 1346, + [1424] = 1330, + [1425] = 1320, + [1426] = 1307, + [1427] = 1340, + [1428] = 1336, + [1429] = 1336, + [1430] = 1337, + [1431] = 1298, + [1432] = 1304, + [1433] = 1433, + [1434] = 1343, + [1435] = 1435, + [1436] = 1293, + [1437] = 1384, + [1438] = 1314, + [1439] = 1312, + [1440] = 1389, [1441] = 1441, - [1442] = 1348, - [1443] = 1377, - [1444] = 1330, - [1445] = 1330, + [1442] = 1311, + [1443] = 1309, + [1444] = 1351, + [1445] = 1295, [1446] = 1330, - [1447] = 1347, - [1448] = 1318, - [1449] = 1321, - [1450] = 1296, - [1451] = 1451, - [1452] = 1299, - [1453] = 1377, - [1454] = 1454, - [1455] = 1368, - [1456] = 1337, - [1457] = 1387, - [1458] = 1323, - [1459] = 1324, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1335, - [1464] = 1327, - [1465] = 1343, - [1466] = 1341, - [1467] = 1340, - [1468] = 1303, - [1469] = 1387, - [1470] = 1305, - [1471] = 1307, - [1472] = 1472, + [1447] = 1329, + [1448] = 1448, + [1449] = 1340, + [1450] = 1336, + [1451] = 1336, + [1452] = 1336, + [1453] = 1312, + [1454] = 1306, + [1455] = 1314, + [1456] = 1389, + [1457] = 1435, + [1458] = 1298, + [1459] = 1384, + [1460] = 1297, + [1461] = 1389, + [1462] = 1320, + [1463] = 1441, + [1464] = 1346, + [1465] = 1344, + [1466] = 1466, + [1467] = 1300, + [1468] = 1308, + [1469] = 1294, + [1470] = 1470, + [1471] = 1471, + [1472] = 1343, [1473] = 1335, - [1474] = 1332, - [1475] = 1310, + [1474] = 1333, + [1475] = 1441, [1476] = 1476, - [1477] = 1477, - [1478] = 1387, - [1479] = 1479, - [1480] = 1480, - [1481] = 1335, - [1482] = 440, - [1483] = 1331, - [1484] = 1460, - [1485] = 439, - [1486] = 1460, - [1487] = 1330, - [1488] = 1460, + [1477] = 1327, + [1478] = 1324, + [1479] = 1294, + [1480] = 1317, + [1481] = 1299, + [1482] = 1368, + [1483] = 1322, + [1484] = 1441, + [1485] = 1296, + [1486] = 1486, + [1487] = 1294, + [1488] = 1353, + [1489] = 1489, + [1490] = 1476, + [1491] = 1345, + [1492] = 1476, + [1493] = 1337, + [1494] = 1476, }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2730 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 ? (c < 1994 ? (c < 910 ? (c < 736 @@ -3946,841 +3975,13 @@ static inline bool sym_identifier_character_set_1(int32_t c) { ? (c >= 2437 && c <= 2444) : c <= 2448) : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2602 - ? (c < 2544 + : (c <= 2482 || (c < 2579 + ? (c < 2527 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (c <= 2510 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3261 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3133 - ? (c < 3024 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3024 || (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))) - : (c <= 3133 || (c < 3205 - ? (c < 3168 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165) - : (c <= 3169 || c == 3200)) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) - : (c <= 3261 || (c < 3716 - ? (c < 3450 - ? (c < 3346 - ? (c < 3313 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297) - : (c <= 3314 || (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344))) - : (c <= 3386 || (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))))) - : (c <= 3455 || (c < 3520 - ? (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)) - : (c <= 3526 || (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))))))) - : (c <= 3716 || (c < 3840 - ? (c < 3762 - ? (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))) - : (c <= 3762 || (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))))) - : (c <= 3840 || (c < 4159 - ? (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4159 || (c < 4193 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189) - : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) - : (c <= 4208 || (c < 8178 - ? (c < 6320 - ? (c < 4882 - ? (c < 4698 - ? (c < 4304 - ? (c < 4256 - ? (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238) - : (c <= 4293 || (c < 4301 - ? c == 4295 - : c <= 4301))) - : (c <= 4346 || (c < 4688 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685) - : (c <= 4694 || c == 4696)))) - : (c <= 4701 || (c < 4792 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c >= 4824 && c <= 4880))))))) - : (c <= 4885 || (c < 5919 - ? (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4888 && c <= 4954) - : c <= 5007) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5905))))) - : (c <= 5937 || (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))))))) - : (c <= 6389 || (c < 7406 - ? (c < 7043 - ? (c < 6656 - ? (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6988))))) - : (c <= 7072 || (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))))) - : (c <= 7411 || (c < 8029 - ? (c < 7968 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || c == 8027)))) - : (c <= 8029 || (c < 8130 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) - : (c <= 8180 || (c < 12540 - ? (c < 11520 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || c == 8484)))) - : (c <= 8486 || (c < 8526 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))))))) - : (c <= 11557 || (c < 11720 - ? (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))) - : (c <= 12341 || (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) - : (c <= 12543 || (c < 43011 - ? (c < 42560 - ? (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))))))) - : (c <= 43013 || (c < 43360 - ? (c < 43250 - ? (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))) - : (c <= 43255 || (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))))) - : (c <= 43388 || (c < 43514 - ? (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))) - : (c <= 43518 || (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43642 || (c < 71168 - ? (c < 67392 - ? (c < 65147 - ? (c < 63744 - ? (c < 43785 - ? (c < 43714 - ? (c < 43701 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : c <= 43697) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))) - : (c <= 43881 || (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))))))) - : (c <= 64109 || (c < 64326 - ? (c < 64298 - ? (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))))) - : (c <= 65147 || (c < 66304 - ? (c < 65536 - ? (c < 65440 - ? (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65437))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65616 - ? (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))))))) - : (c <= 66335 || (c < 66864 - ? (c < 66513 - ? (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))) - : (c <= 66517 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))) - : (c <= 66915 || (c < 66967 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 67003 - ? (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) - : (c <= 67413 || (c < 69600 - ? (c < 68117 - ? (c < 67680 - ? (c < 67592 - ? (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589))) - : (c <= 67592 || (c < 67644 - ? (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640) - : (c <= 67644 || (c >= 67647 && c <= 67669))))) - : (c <= 67702 || (c < 67872 - ? (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c >= 67840 && c <= 67861))) - : (c <= 67897 || (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68096 || (c >= 68112 && c <= 68115))))))) - : (c <= 68119 || (c < 68736 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c >= 68608 && c <= 68680))))) - : (c <= 68786 || (c < 69376 - ? (c < 69248 - ? (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68899) - : (c <= 69289 || (c >= 69296 && c <= 69297))) - : (c <= 69404 || (c < 69488 - ? (c < 69424 - ? c == 69415 - : c <= 69445) - : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) - : (c <= 69622 || (c < 70287 - ? (c < 70019 - ? (c < 69891 - ? (c < 69749 - ? (c < 69745 - ? (c >= 69635 && c <= 69687) - : c <= 69746) - : (c <= 69749 || (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864))) - : (c <= 69926 || (c < 69968 - ? (c < 69959 - ? c == 69956 - : c <= 69959) - : (c <= 70002 || c == 70006)))) - : (c <= 70066 || (c < 70163 - ? (c < 70108 - ? (c < 70106 - ? (c >= 70081 && c <= 70084) - : c <= 70106) - : (c <= 70108 || (c >= 70144 && c <= 70161))) - : (c <= 70187 || (c < 70280 - ? (c < 70272 - ? (c >= 70207 && c <= 70208) - : c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))))))) - : (c <= 70301 || (c < 70480 - ? (c < 70419 - ? (c < 70405 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || c == 70461)))) - : (c <= 70480 || (c < 70784 - ? (c < 70727 - ? (c < 70656 - ? (c >= 70493 && c <= 70497) - : c <= 70708) - : (c <= 70730 || (c >= 70751 && c <= 70753))) - : (c <= 70831 || (c < 71040 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : c <= 70855) - : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) - : (c <= 71215 || (c < 119973 - ? (c < 73648 - ? (c < 72250 - ? (c < 71957 - ? (c < 71680 - ? (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c < 71488 - ? (c >= 71424 && c <= 71450) - : c <= 71494))) - : (c <= 71723 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71903) - : c <= 71942) - : (c <= 71945 || (c >= 71948 && c <= 71955))))) - : (c <= 71958 || (c < 72106 - ? (c < 72001 - ? (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999) - : (c <= 72001 || (c >= 72096 && c <= 72103))) - : (c <= 72144 || (c < 72192 - ? (c < 72163 - ? c == 72161 - : c <= 72163) - : (c <= 72192 || (c >= 72203 && c <= 72242))))))) - : (c <= 72250 || (c < 72971 - ? (c < 72714 - ? (c < 72349 - ? (c < 72284 - ? c == 72272 - : c <= 72329) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c >= 72968 && c <= 72969))))) - : (c <= 73008 || (c < 73112 - ? (c < 73063 - ? (c < 73056 - ? c == 73030 - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73097))) - : (c <= 73112 || (c < 73476 - ? (c < 73474 - ? (c >= 73440 && c <= 73458) - : c <= 73474) - : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) - : (c <= 73648 || (c < 94179 - ? (c < 92880 - ? (c < 78913 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78895))) - : (c <= 78918 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))))) - : (c <= 92909 || (c < 93760 - ? (c < 93027 - ? (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995) - : (c <= 93047 || (c >= 93053 && c <= 93071))) - : (c <= 93823 || (c < 94099 - ? (c < 94032 - ? (c >= 93952 && c <= 94026) - : c <= 94032) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94179 || (c < 110948 - ? (c < 110589 - ? (c < 101632 - ? (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589) - : (c <= 101640 || (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 - ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2707 - ? (c < 1969 - ? (c < 908 - ? (c < 710 - ? (c < 181 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 't' || (c < 170 - ? (c >= 'v' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1646 - ? (c < 1369 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 - ? (c < 2185 - ? (c < 2084 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c < 2074 - ? (c >= 2048 && c <= 2069) - : c <= 2074))) - : (c <= 2084 || (c < 2144 - ? (c < 2112 - ? c == 2088 - : c <= 2136) - : (c <= 2154 || (c >= 2160 && c <= 2183))))) - : (c <= 2190 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2208 && c <= 2249) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2579 - ? (c < 2527 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || (c < 2524 - ? c == 2510 - : c <= 2525))) + : (c <= 2510 || (c >= 2524 && c <= 2525))) : (c <= 2529 || (c < 2565 ? (c < 2556 ? (c >= 2544 && c <= 2545) @@ -4797,7 +3998,7 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? c == 2654 : c <= 2676) : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3253 + : (c <= 2728 || (c < 3242 ? (c < 2962 ? (c < 2858 ? (c < 2784 @@ -4824,1564 +4025,1522 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? c == 2929 : c <= 2947) : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3114 - ? (c < 2990 + : (c <= 2965 || (c < 3090 + ? (c < 2984 ? (c < 2974 ? (c < 2972 ? (c >= 2969 && c <= 2970) : c <= 2972) - : (c <= 2975 || (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986))) - : (c <= 3001 || (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))))) - : (c <= 3129 || (c < 3200 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) - : (c <= 3257 || (c < 3713 - ? (c < 3423 - ? (c < 3342 - ? (c < 3296 - ? (c < 3293 - ? c == 3261 - : c <= 3294) - : (c <= 3297 || (c < 3332 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))))) - : (c <= 3425 || (c < 3517 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))))))) - : (c <= 3714 || (c < 3840 - ? (c < 3762 - ? (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3760))) - : (c <= 3762 || (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))))) - : (c <= 3840 || (c < 4159 - ? (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4159 || (c < 4193 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189) - : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) - : (c <= 4208 || (c < 8178 - ? (c < 6320 - ? (c < 4882 - ? (c < 4698 - ? (c < 4304 - ? (c < 4256 - ? (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238) - : (c <= 4293 || (c < 4301 - ? c == 4295 - : c <= 4301))) - : (c <= 4346 || (c < 4688 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685) - : (c <= 4694 || c == 4696)))) - : (c <= 4701 || (c < 4792 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c >= 4824 && c <= 4880))))))) - : (c <= 4885 || (c < 5919 - ? (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4888 && c <= 4954) - : c <= 5007) - : (c <= 5109 || (c < 5121 + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5905))))) - : (c <= 5937 || (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))))))) - : (c <= 6389 || (c < 7406 - ? (c < 7043 - ? (c < 6656 - ? (c < 6512 - ? (c < 6480 + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6988))))) - : (c <= 7072 || (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))))) - : (c <= 7411 || (c < 8029 - ? (c < 7968 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || c == 8027)))) - : (c <= 8029 || (c < 8130 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) - : (c <= 8180 || (c < 12540 - ? (c < 11520 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || c == 8484)))) - : (c <= 8486 || (c < 8526 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))))))) - : (c <= 11557 || (c < 11720 - ? (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 ? (c < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 ? (c < 11736 ? (c >= 11728 && c <= 11734) : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))) - : (c <= 12341 || (c < 12445 + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 ? (c < 12353 ? (c >= 12344 && c <= 12348) : c <= 12438) - : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) - : (c <= 12543 || (c < 43011 - ? (c < 42560 - ? (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 ? (c < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 ? (c < 42656 ? (c >= 42623 && c <= 42653) : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42965 + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 ? (c < 42963 ? (c >= 42960 && c <= 42961) : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))))))) - : (c <= 43013 || (c < 43360 - ? (c < 43250 - ? (c < 43072 + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 ? (c < 43020 ? (c >= 43015 && c <= 43018) : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))) - : (c <= 43255 || (c < 43274 + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 ? (c < 43261 ? c == 43259 : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))))) - : (c <= 43388 || (c < 43514 - ? (c < 43488 + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 ? (c < 43471 ? (c >= 43396 && c <= 43442) : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))) - : (c <= 43518 || (c < 43588 + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 ? (c < 43584 ? (c >= 43520 && c <= 43560) : c <= 43586) - : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43642 || (c < 71168 - ? (c < 67392 - ? (c < 65147 - ? (c < 63744 - ? (c < 43785 - ? (c < 43714 - ? (c < 43701 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : c <= 43697) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43762 + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 ? (c < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))) - : (c <= 43881 || (c < 55216 + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 ? (c < 44032 ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))))))) - : (c <= 64109 || (c < 64326 - ? (c < 64298 - ? (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))))) - : (c <= 65147 || (c < 66304 - ? (c < 65536 - ? (c < 65440 - ? (c < 65313 + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65437))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65616 - ? (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))))))) - : (c <= 66335 || (c < 66864 - ? (c < 66513 - ? (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))) - : (c <= 66517 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))) - : (c <= 66915 || (c < 66967 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 67003 - ? (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) - : (c <= 67413 || (c < 69600 - ? (c < 68117 - ? (c < 67680 - ? (c < 67592 - ? (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589))) - : (c <= 67592 || (c < 67644 - ? (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640) - : (c <= 67644 || (c >= 67647 && c <= 67669))))) - : (c <= 67702 || (c < 67872 - ? (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c >= 67840 && c <= 67861))) - : (c <= 67897 || (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68096 || (c >= 68112 && c <= 68115))))))) - : (c <= 68119 || (c < 68736 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c >= 68608 && c <= 68680))))) - : (c <= 68786 || (c < 69376 - ? (c < 69248 - ? (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68899) - : (c <= 69289 || (c >= 69296 && c <= 69297))) - : (c <= 69404 || (c < 69488 - ? (c < 69424 + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 ? c == 69415 - : c <= 69445) - : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) - : (c <= 69622 || (c < 70287 - ? (c < 70019 - ? (c < 69891 - ? (c < 69749 - ? (c < 69745 - ? (c >= 69635 && c <= 69687) - : c <= 69746) - : (c <= 69749 || (c < 69840 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864))) - : (c <= 69926 || (c < 69968 - ? (c < 69959 - ? c == 69956 - : c <= 69959) - : (c <= 70002 || c == 70006)))) - : (c <= 70066 || (c < 70163 - ? (c < 70108 - ? (c < 70106 - ? (c >= 70081 && c <= 70084) - : c <= 70106) - : (c <= 70108 || (c >= 70144 && c <= 70161))) - : (c <= 70187 || (c < 70280 - ? (c < 70272 - ? (c >= 70207 && c <= 70208) - : c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))))))) - : (c <= 70301 || (c < 70480 - ? (c < 70419 - ? (c < 70405 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || c == 70461)))) - : (c <= 70480 || (c < 70784 - ? (c < 70727 - ? (c < 70656 - ? (c >= 70493 && c <= 70497) - : c <= 70708) - : (c <= 70730 || (c >= 70751 && c <= 70753))) - : (c <= 70831 || (c < 71040 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : c <= 70855) - : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) - : (c <= 71215 || (c < 119973 - ? (c < 73648 - ? (c < 72250 - ? (c < 71957 - ? (c < 71680 - ? (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c < 71488 - ? (c >= 71424 && c <= 71450) - : c <= 71494))) - : (c <= 71723 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71903) - : c <= 71942) - : (c <= 71945 || (c >= 71948 && c <= 71955))))) - : (c <= 71958 || (c < 72106 - ? (c < 72001 - ? (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999) - : (c <= 72001 || (c >= 72096 && c <= 72103))) - : (c <= 72144 || (c < 72192 - ? (c < 72163 - ? c == 72161 - : c <= 72163) - : (c <= 72192 || (c >= 72203 && c <= 72242))))))) - : (c <= 72250 || (c < 72971 - ? (c < 72714 - ? (c < 72349 - ? (c < 72284 - ? c == 72272 - : c <= 72329) - : (c <= 72349 || (c < 72704 + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c >= 72968 && c <= 72969))))) - : (c <= 73008 || (c < 73112 - ? (c < 73063 - ? (c < 73056 - ? c == 73030 - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73097))) - : (c <= 73112 || (c < 73476 - ? (c < 73474 + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 ? (c >= 73440 && c <= 73458) - : c <= 73474) - : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) - : (c <= 73648 || (c < 94179 - ? (c < 92880 - ? (c < 78913 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78895))) - : (c <= 78918 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))))) - : (c <= 92909 || (c < 93760 - ? (c < 93027 - ? (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995) - : (c <= 93047 || (c >= 93053 && c <= 93071))) - : (c <= 93823 || (c < 94099 - ? (c < 94032 - ? (c >= 93952 && c <= 94026) - : c <= 94032) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94179 || (c < 110948 - ? (c < 110589 - ? (c < 101632 - ? (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589) - : (c <= 101640 || (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43646 - ? (c < 4213 - ? (c < 2738 - ? (c < 2036 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' - ? (c >= 'A' && c <= '_') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1749 - ? (c < 1488 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1514 || (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))))) - : (c <= 1749 || (c < 1808 - ? (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) - : (c <= 2037 || (c < 2486 - ? (c < 2308 - ? (c < 2112 - ? (c < 2074 - ? (c < 2048 - ? c == 2042 - : c <= 2069) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))))) - : (c <= 2361 || (c < 2437 - ? (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)))))) - : (c <= 2489 || (c < 2610 - ? (c < 2556 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c < 2544 +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43494 + ? (c < 4186 + ? (c < 2703 + ? (c < 1969 + ? (c < 908 + ? (c < 710 + ? (c < 181 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 't' || (c < 170 + ? (c >= 'v' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1646 + ? (c < 1369 + ? (c < 1015 + ? (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013) + : (c <= 1153 || (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 + ? (c < 2185 + ? (c < 2084 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c < 2074 + ? (c >= 2048 && c <= 2069) + : c <= 2074))) + : (c <= 2084 || (c < 2144 + ? (c < 2112 + ? c == 2088 + : c <= 2136) + : (c <= 2154 || (c >= 2160 && c <= 2183))))) + : (c <= 2190 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2208 && c <= 2249) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 ? (c >= 2527 && c <= 2529) - : c <= 2545))) - : (c <= 2556 || (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c >= 2602 && c <= 2608))))) - : (c <= 2611 || (c < 2674 - ? (c < 2649 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2652 || c == 2654)) - : (c <= 2676 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3293 - ? (c < 2972 - ? (c < 2869 - ? (c < 2821 - ? (c < 2768 - ? (c < 2749 + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2674 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2676 || (c >= 2693 && c <= 2701))))))))))) + : (c <= 2705 || (c < 3218 + ? (c < 2958 + ? (c < 2835 + ? (c < 2768 + ? (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2749 ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c < 2809 + : c <= 2749))) + : (c <= 2768 || (c < 2821 + ? (c < 2809 ? (c >= 2784 && c <= 2785) - : c <= 2809))) - : (c <= 2828 || (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))))) - : (c <= 2873 || (c < 2947 - ? (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)) - : (c <= 2947 || (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))))))) - : (c <= 2972 || (c < 3160 - ? (c < 3077 - ? (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || c == 3133)))) - : (c <= 3162 || (c < 3214 - ? (c < 3200 - ? (c < 3168 - ? c == 3165 - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))) - : (c <= 3216 || (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)))))))) - : (c <= 3294 || (c < 3718 - ? (c < 3461 - ? (c < 3389 - ? (c < 3332 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386))) - : (c <= 3389 || (c < 3423 - ? (c < 3412 - ? c == 3406 - : c <= 3414) - : (c <= 3425 || (c >= 3450 && c <= 3455))))) - : (c <= 3478 || (c < 3585 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c >= 3520 && c <= 3526))) - : (c <= 3632 || (c < 3713 - ? (c < 3648 - ? c == 3634 - : c <= 3654) - : (c <= 3714 || c == 3716)))))) - : (c <= 3722 || (c < 3904 - ? (c < 3773 - ? (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3760 || c == 3762)) - : (c <= 3773 || (c < 3804 - ? (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782) - : (c <= 3807 || c == 3840)))) - : (c <= 3911 || (c < 4176 - ? (c < 4096 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : c <= 3980) - : (c <= 4138 || c == 4159)) - : (c <= 4181 || (c < 4197 - ? (c < 4193 - ? (c >= 4186 && c <= 4189) - : c <= 4193) - : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) - : (c <= 4225 || (c < 8182 - ? (c < 6400 - ? (c < 4888 - ? (c < 4704 - ? (c < 4348 - ? (c < 4295 - ? (c < 4256 - ? c == 4238 - : c <= 4293) - : (c <= 4295 || (c < 4304 - ? c == 4301 - : c <= 4346))) - : (c <= 4680 || (c < 4696 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694) - : (c <= 4696 || (c >= 4698 && c <= 4701))))) - : (c <= 4744 || (c < 4800 - ? (c < 4786 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784) - : (c <= 4789 || (c >= 4792 && c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c >= 4882 && c <= 4885))))))) - : (c <= 4954 || (c < 5952 - ? (c < 5761 - ? (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759))) - : (c <= 5786 || (c < 5888 + : c <= 2809) + : (c <= 2828 || (c >= 2831 && c <= 2832))))) + : (c <= 2856 || (c < 2908 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || c == 2877)) + : (c <= 2909 || (c < 2947 + ? (c < 2929 + ? (c >= 2911 && c <= 2913) + : c <= 2929) + : (c <= 2947 || (c >= 2949 && c <= 2954))))))) + : (c <= 2960 || (c < 3086 + ? (c < 2979 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c >= 2974 && c <= 2975))) + : (c <= 2980 || (c < 3024 + ? (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001) + : (c <= 3024 || (c >= 3077 && c <= 3084))))) + : (c <= 3088 || (c < 3165 + ? (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3133 || (c >= 3160 && c <= 3162))) + : (c <= 3165 || (c < 3205 + ? (c < 3200 + ? (c >= 3168 && c <= 3169) + : c <= 3200) + : (c <= 3212 || (c >= 3214 && c <= 3216))))))))) + : (c <= 3240 || (c < 3634 + ? (c < 3406 + ? (c < 3313 + ? (c < 3261 + ? (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257) + : (c <= 3261 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344) + : (c <= 3386 || c == 3389)))) + : (c <= 3406 || (c < 3482 + ? (c < 3450 + ? (c < 3423 + ? (c >= 3412 && c <= 3414) + : c <= 3425) + : (c <= 3455 || (c >= 3461 && c <= 3478))) + : (c <= 3505 || (c < 3520 + ? (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517) + : (c <= 3526 || (c >= 3585 && c <= 3632))))))) + : (c <= 3634 || (c < 3776 + ? (c < 3724 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3648 && c <= 3654) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))) + : (c <= 3747 || (c < 3762 + ? (c < 3751 + ? c == 3749 + : c <= 3760) + : (c <= 3762 || c == 3773)))) + : (c <= 3780 || (c < 3913 + ? (c < 3840 + ? (c < 3804 + ? c == 3782 + : c <= 3807) + : (c <= 3840 || (c >= 3904 && c <= 3911))) + : (c <= 3948 || (c < 4159 + ? (c < 4096 + ? (c >= 3976 && c <= 3980) + : c <= 4138) + : (c <= 4159 || (c >= 4176 && c <= 4181))))))))))))) + : (c <= 4189 || (c < 8130 + ? (c < 6108 + ? (c < 4802 + ? (c < 4682 + ? (c < 4256 + ? (c < 4206 + ? (c < 4197 + ? c == 4193 + : c <= 4198) + : (c <= 4208 || (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238))) + : (c <= 4293 || (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c >= 4348 && c <= 4680))))) + : (c <= 4685 || (c < 4746 + ? (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c >= 4704 && c <= 4744))) + : (c <= 4749 || (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || c == 4800)))))) + : (c <= 4805 || (c < 5761 + ? (c < 4992 + ? (c < 4882 + ? (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880) + : (c <= 4885 || (c >= 4888 && c <= 4954))) + : (c <= 5007 || (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))))) + : (c <= 5786 || (c < 5952 + ? (c < 5888 ? (c < 5870 ? (c >= 5792 && c <= 5866) : c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))))) - : (c <= 5969 || (c < 6108 - ? (c < 6016 + : (c <= 5905 || (c >= 5919 && c <= 5937))) + : (c <= 5969 || (c < 6016 ? (c < 5998 ? (c >= 5984 && c <= 5996) : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 + : (c <= 6067 || c == 6103)))))))) + : (c <= 6108 || (c < 7296 + ? (c < 6688 + ? (c < 6480 + ? (c < 6314 ? (c < 6272 ? (c >= 6176 && c <= 6264) : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) - : (c <= 6430 || (c < 7413 - ? (c < 7086 - ? (c < 6688 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678))) - : (c <= 6740 || (c < 6981 + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c >= 6656 && c <= 6678))))) + : (c <= 6740 || (c < 7086 + ? (c < 6981 ? (c < 6917 ? c == 6823 : c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))))) - : (c <= 7087 || (c < 7296 - ? (c < 7245 + : (c <= 6988 || (c >= 7043 && c <= 7072))) + : (c <= 7087 || (c < 7245 ? (c < 7168 ? (c >= 7098 && c <= 7141) : c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))) - : (c <= 7304 || (c < 7401 + : (c <= 7247 || (c >= 7258 && c <= 7293))))))) + : (c <= 7304 || (c < 7968 + ? (c < 7413 + ? (c < 7401 ? (c < 7357 ? (c >= 7312 && c <= 7354) : c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))))))) - : (c <= 7414 || (c < 8031 - ? (c < 8008 - ? (c < 7680 + : (c <= 7404 || (c >= 7406 && c <= 7411))) + : (c <= 7414 || (c < 7680 ? (c < 7424 ? c == 7418 : c <= 7615) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8134 - ? (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) - : (c <= 8188 || (c < 12549 - ? (c < 11559 - ? (c < 8488 - ? (c < 8458 - ? (c < 8336 + : (c <= 7957 || (c >= 7960 && c <= 7965))))) + : (c <= 8005 || (c < 8029 + ? (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)) + : (c <= 8029 || (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)))))))))) + : (c <= 8132 || (c < 12321 + ? (c < 8526 + ? (c < 8455 + ? (c < 8182 + ? (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))) + : (c <= 8188 || (c < 8336 ? (c < 8319 ? c == 8305 : c <= 8319) - : (c <= 8348 || (c < 8455 - ? c == 8450 - : c <= 8455))) - : (c <= 8467 || (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)))) - : (c <= 8488 || (c < 8544 - ? (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)) - : (c <= 8584 || (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))))))) - : (c <= 11559 || (c < 11728 - ? (c < 11688 - ? (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686))) - : (c <= 11694 || (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))))) - : (c <= 11734 || (c < 12344 - ? (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c >= 12337 && c <= 12341))) - : (c <= 12348 || (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) - : (c <= 12591 || (c < 43015 - ? (c < 42623 - ? (c < 42192 - ? (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42960 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))) - : (c <= 42961 || (c < 42994 - ? (c < 42965 - ? c == 42963 - : c <= 42969) - : (c <= 43009 || (c >= 43011 && c <= 43013))))))) - : (c <= 43018 || (c < 43396 - ? (c < 43259 - ? (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c >= 43250 && c <= 43255))) - : (c <= 43259 || (c < 43312 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))))) - : (c <= 43442 || (c < 43520 - ? (c < 43494 - ? (c < 43488 - ? c == 43471 - : c <= 43492) - : (c <= 43503 || (c >= 43514 && c <= 43518))) - : (c <= 43560 || (c < 43616 - ? (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595) - : (c <= 43638 || c == 43642)))))))))))))) - : (c <= 43695 || (c < 71236 - ? (c < 67424 - ? (c < 65149 - ? (c < 64112 - ? (c < 43793 - ? (c < 43739 - ? (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || (c < 43714 - ? c == 43712 - : c <= 43714))) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))) - : (c <= 64217 || (c < 64467 - ? (c < 64312 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c < 64298 - ? (c >= 64287 && c <= 64296) - : c <= 64310))) - : (c <= 64316 || (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))))) - : (c <= 64605 || (c < 65137 - ? (c < 64914 - ? (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911) - : (c <= 64967 || (c >= 65008 && c <= 65017))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || c == 65147)))))))) - : (c <= 65149 || (c < 66349 - ? (c < 65549 - ? (c < 65474 - ? (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))) - : (c <= 65574 || (c < 65664 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c >= 65616 && c <= 65629))) - : (c <= 65786 || (c < 66208 - ? (c < 66176 - ? (c >= 65856 && c <= 65908) - : c <= 66204) - : (c <= 66256 || (c >= 66304 && c <= 66335))))))) - : (c <= 66378 || (c < 66928 - ? (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66421) - : c <= 66461) - : (c <= 66499 || (c < 66513 + : (c <= 8348 || c == 8450)))) + : (c <= 8455 || (c < 8486 + ? (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)) + : (c <= 8486 || (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))))))) + : (c <= 8526 || (c < 11648 + ? (c < 11520 + ? (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || c == 11631)))) + : (c <= 11670 || (c < 11712 + ? (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c >= 11704 && c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c >= 12293 && c <= 12295))))))))) + : (c <= 12329 || (c < 42786 + ? (c < 13312 + ? (c < 12540 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))) + : (c <= 12543 || (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c >= 12784 && c <= 12799))))) + : (c <= 19903 || (c < 42538 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c >= 42512 && c <= 42527))) + : (c <= 42539 || (c < 42656 + ? (c < 42623 + ? (c >= 42560 && c <= 42606) + : c <= 42653) + : (c <= 42735 || (c >= 42775 && c <= 42783))))))) + : (c <= 42888 || (c < 43138 + ? (c < 42994 + ? (c < 42963 + ? (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961) + : (c <= 42963 || (c >= 42965 && c <= 42969))) + : (c <= 43009 || (c < 43020 + ? (c < 43015 + ? (c >= 43011 && c <= 43013) + : c <= 43018) + : (c <= 43042 || (c >= 43072 && c <= 43123))))) + : (c <= 43187 || (c < 43312 + ? (c < 43261 + ? (c < 43259 + ? (c >= 43250 && c <= 43255) + : c <= 43259) + : (c <= 43262 || (c >= 43274 && c <= 43301))) + : (c <= 43334 || (c < 43471 + ? (c < 43396 + ? (c >= 43360 && c <= 43388) + : c <= 43442) + : (c <= 43471 || (c >= 43488 && c <= 43492))))))))))))))) + : (c <= 43503 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43824 + ? (c < 43712 + ? (c < 43642 + ? (c < 43584 + ? (c < 43520 + ? (c >= 43514 && c <= 43518) + : c <= 43560) + : (c <= 43586 || (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638))) + : (c <= 43642 || (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c >= 43705 && c <= 43709))))) + : (c <= 43712 || (c < 43777 + ? (c < 43744 + ? (c < 43739 + ? c == 43714 + : c <= 43741) + : (c <= 43754 || (c >= 43762 && c <= 43764))) + : (c <= 43782 || (c < 43808 + ? (c < 43793 + ? (c >= 43785 && c <= 43790) + : c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))))))) + : (c <= 43866 || (c < 64287 + ? (c < 63744 + ? (c < 44032 + ? (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44002) + : (c <= 55203 || (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66816 - ? (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))))) - : (c <= 66938 || (c < 66979 - ? (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c >= 66967 && c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) - : (c <= 67431 || (c < 69635 - ? (c < 68121 - ? (c < 67712 - ? (c < 67594 - ? (c < 67506 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : c <= 67504) - : (c <= 67514 || (c < 67592 + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c >= 67680 && c <= 67702))))) - : (c <= 67742 || (c < 67968 - ? (c < 67840 - ? (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829) - : (c <= 67861 || (c >= 67872 && c <= 67897))) - : (c <= 68023 || (c < 68112 - ? (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68096) - : (c <= 68115 || (c >= 68117 && c <= 68119))))))) - : (c <= 68149 || (c < 68800 - ? (c < 68416 - ? (c < 68288 - ? (c < 68224 - ? (c >= 68192 && c <= 68220) - : c <= 68252) - : (c <= 68295 || (c < 68352 - ? (c >= 68297 && c <= 68324) - : c <= 68405))) - : (c <= 68437 || (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))))) - : (c <= 68850 || (c < 69415 - ? (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))) - : (c <= 69415 || (c < 69552 - ? (c < 69488 - ? (c >= 69424 && c <= 69445) - : c <= 69505) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69687 || (c < 70303 - ? (c < 70081 - ? (c < 69956 - ? (c < 69763 - ? (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749) - : (c <= 69807 || (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926))) - : (c <= 69956 || (c < 70006 - ? (c < 69968 - ? c == 69959 - : c <= 70002) - : (c <= 70006 || (c >= 70019 && c <= 70066))))) - : (c <= 70084 || (c < 70207 - ? (c < 70144 - ? (c < 70108 - ? c == 70106 - : c <= 70108) - : (c <= 70161 || (c >= 70163 && c <= 70187))) - : (c <= 70208 || (c < 70282 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280) - : (c <= 70285 || (c >= 70287 && c <= 70301))))))) - : (c <= 70312 || (c < 70493 - ? (c < 70442 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70320 && c <= 70366) - : c <= 70412) - : (c <= 70416 || (c >= 70419 && c <= 70440))) - : (c <= 70448 || (c < 70461 - ? (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457) - : (c <= 70461 || c == 70480)))) - : (c <= 70497 || (c < 70852 - ? (c < 70751 - ? (c < 70727 - ? (c >= 70656 && c <= 70708) - : c <= 70730) - : (c <= 70753 || (c >= 70784 && c <= 70831))) - : (c <= 70853 || (c < 71128 - ? (c < 71040 + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 ? c == 70855 - : c <= 71086) - : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) - : (c <= 71236 || (c < 119973 - ? (c < 73728 - ? (c < 72272 - ? (c < 71960 - ? (c < 71840 - ? (c < 71424 - ? (c < 71352 - ? (c >= 71296 && c <= 71338) - : c <= 71352) - : (c <= 71450 || (c < 71680 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 ? (c >= 71488 && c <= 71494) - : c <= 71723))) - : (c <= 71903 || (c < 71948 - ? (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945) - : (c <= 71955 || (c >= 71957 && c <= 71958))))) - : (c <= 71983 || (c < 72161 - ? (c < 72096 - ? (c < 72001 - ? c == 71999 - : c <= 72001) - : (c <= 72103 || (c >= 72106 && c <= 72144))) - : (c <= 72161 || (c < 72203 - ? (c < 72192 - ? c == 72163 - : c <= 72192) - : (c <= 72242 || c == 72250)))))) - : (c <= 72272 || (c < 73030 - ? (c < 72768 - ? (c < 72368 - ? (c < 72349 - ? (c >= 72284 && c <= 72329) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72750))) - : (c <= 72768 || (c < 72968 - ? (c < 72960 - ? (c >= 72818 && c <= 72847) - : c <= 72966) - : (c <= 72969 || (c >= 72971 && c <= 73008))))) - : (c <= 73030 || (c < 73440 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || c == 73112)) - : (c <= 73458 || (c < 73490 - ? (c < 73476 - ? c == 73474 - : c <= 73488) - : (c <= 73523 || c == 73648)))))))) - : (c <= 74649 || (c < 94208 - ? (c < 92928 - ? (c < 82944 - ? (c < 77712 + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 ? (c < 74880 ? (c >= 74752 && c <= 74862) : c <= 75075) - : (c <= 77808 || (c < 78913 - ? (c >= 77824 && c <= 78895) - : c <= 78918))) - : (c <= 83526 || (c < 92784 + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))))) - : (c <= 92975 || (c < 93952 - ? (c < 93053 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 ? (c < 93027 ? (c >= 92992 && c <= 92995) : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))) - : (c <= 94026 || (c < 94176 + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 ? (c < 94099 ? c == 94032 : c <= 94111) - : (c <= 94177 || c == 94179)))))) - : (c <= 100343 || (c < 110948 - ? (c < 110589 - ? (c < 110576 + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 ? (c < 101632 ? (c >= 100352 && c <= 101589) : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2730 +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43514 + ? (c < 4193 + ? (c < 2707 ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 ? (c < 1376 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) : (c <= 1416 || (c < 1568 ? (c < 1519 ? (c >= 1488 && c <= 1514) @@ -6424,1774 +5583,2548 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c >= 2437 && c <= 2444) : c <= 2448) : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2602 - ? (c < 2544 + : (c <= 2482 || (c < 2579 + ? (c < 2527 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (c <= 2510 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3261 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3133 - ? (c < 3024 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3024 || (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))) - : (c <= 3133 || (c < 3205 - ? (c < 3168 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165) - : (c <= 3169 || c == 3200)) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) - : (c <= 3261 || (c < 3716 - ? (c < 3450 - ? (c < 3346 - ? (c < 3313 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297) - : (c <= 3314 || (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344))) - : (c <= 3386 || (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))))) - : (c <= 3455 || (c < 3520 - ? (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)) - : (c <= 3526 || (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))))))) - : (c <= 3716 || (c < 3840 - ? (c < 3762 - ? (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))) - : (c <= 3762 || (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))))) - : (c <= 3840 || (c < 4159 - ? (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4159 || (c < 4193 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189) - : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) - : (c <= 4208 || (c < 8178 - ? (c < 6320 - ? (c < 4882 - ? (c < 4698 - ? (c < 4304 - ? (c < 4256 - ? (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238) - : (c <= 4293 || (c < 4301 - ? c == 4295 - : c <= 4301))) - : (c <= 4346 || (c < 4688 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685) - : (c <= 4694 || c == 4696)))) - : (c <= 4701 || (c < 4792 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c >= 4824 && c <= 4880))))))) - : (c <= 4885 || (c < 5919 - ? (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4888 && c <= 4954) - : c <= 5007) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5905))))) - : (c <= 5937 || (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))))))) - : (c <= 6389 || (c < 7406 - ? (c < 7043 - ? (c < 6656 - ? (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6988))))) - : (c <= 7072 || (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))))) - : (c <= 7411 || (c < 8029 - ? (c < 7968 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || c == 8027)))) - : (c <= 8029 || (c < 8130 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) - : (c <= 8180 || (c < 12540 - ? (c < 11520 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || c == 8484)))) - : (c <= 8486 || (c < 8526 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))))))) - : (c <= 11557 || (c < 11720 - ? (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 ? (c < 11736 ? (c >= 11728 && c <= 11734) : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))) - : (c <= 12341 || (c < 12445 + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 ? (c < 12353 ? (c >= 12344 && c <= 12348) : c <= 12438) - : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) - : (c <= 12543 || (c < 43011 - ? (c < 42560 - ? (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 ? (c < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 ? (c < 42656 ? (c >= 42623 && c <= 42653) : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42965 + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 ? (c < 42963 ? (c >= 42960 && c <= 42961) : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))))))) - : (c <= 43013 || (c < 43360 - ? (c < 43250 - ? (c < 43072 + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 ? (c < 43020 ? (c >= 43015 && c <= 43018) : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))) - : (c <= 43255 || (c < 43274 + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 ? (c < 43261 ? c == 43259 : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))))) - : (c <= 43388 || (c < 43514 - ? (c < 43488 + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 ? (c < 43471 ? (c >= 43396 && c <= 43442) : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))) - : (c <= 43518 || (c < 43588 + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 ? (c < 43584 ? (c >= 43520 && c <= 43560) : c <= 43586) - : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43642 || (c < 71168 - ? (c < 67392 - ? (c < 65147 - ? (c < 63744 - ? (c < 43785 - ? (c < 43714 - ? (c < 43701 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : c <= 43697) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43762 + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 ? (c < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))) - : (c <= 43881 || (c < 55216 + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 ? (c < 44032 ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))))))) - : (c <= 64109 || (c < 64326 - ? (c < 64298 - ? (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))))) - : (c <= 65147 || (c < 66304 - ? (c < 65536 - ? (c < 65440 - ? (c < 65313 + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65437))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65616 - ? (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))))))) - : (c <= 66335 || (c < 66864 - ? (c < 66513 - ? (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))) - : (c <= 66517 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))) - : (c <= 66915 || (c < 66967 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 67003 - ? (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) - : (c <= 67413 || (c < 69600 - ? (c < 68117 - ? (c < 67680 - ? (c < 67592 - ? (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589))) - : (c <= 67592 || (c < 67644 - ? (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640) - : (c <= 67644 || (c >= 67647 && c <= 67669))))) - : (c <= 67702 || (c < 67872 - ? (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c >= 67840 && c <= 67861))) - : (c <= 67897 || (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68096 || (c >= 68112 && c <= 68115))))))) - : (c <= 68119 || (c < 68736 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68324))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c >= 68608 && c <= 68680))))) - : (c <= 68786 || (c < 69376 - ? (c < 69248 - ? (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68899) - : (c <= 69289 || (c >= 69296 && c <= 69297))) - : (c <= 69404 || (c < 69488 - ? (c < 69424 + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 ? c == 69415 - : c <= 69445) - : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) - : (c <= 69622 || (c < 70287 - ? (c < 70019 - ? (c < 69891 - ? (c < 69749 - ? (c < 69745 - ? (c >= 69635 && c <= 69687) - : c <= 69746) - : (c <= 69749 || (c < 69840 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 ? (c >= 69763 && c <= 69807) - : c <= 69864))) - : (c <= 69926 || (c < 69968 - ? (c < 69959 - ? c == 69956 - : c <= 69959) - : (c <= 70002 || c == 70006)))) - : (c <= 70066 || (c < 70163 - ? (c < 70108 - ? (c < 70106 - ? (c >= 70081 && c <= 70084) - : c <= 70106) - : (c <= 70108 || (c >= 70144 && c <= 70161))) - : (c <= 70187 || (c < 70280 - ? (c < 70272 - ? (c >= 70207 && c <= 70208) - : c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))))))) - : (c <= 70301 || (c < 70480 - ? (c < 70419 - ? (c < 70405 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || c == 70461)))) - : (c <= 70480 || (c < 70784 - ? (c < 70727 - ? (c < 70656 - ? (c >= 70493 && c <= 70497) - : c <= 70708) - : (c <= 70730 || (c >= 70751 && c <= 70753))) - : (c <= 70831 || (c < 71040 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : c <= 70855) - : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) - : (c <= 71215 || (c < 119973 - ? (c < 73648 - ? (c < 72250 - ? (c < 71957 - ? (c < 71680 - ? (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c < 71488 - ? (c >= 71424 && c <= 71450) - : c <= 71494))) - : (c <= 71723 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71903) - : c <= 71942) - : (c <= 71945 || (c >= 71948 && c <= 71955))))) - : (c <= 71958 || (c < 72106 - ? (c < 72001 - ? (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999) - : (c <= 72001 || (c >= 72096 && c <= 72103))) - : (c <= 72144 || (c < 72192 - ? (c < 72163 - ? c == 72161 - : c <= 72163) - : (c <= 72192 || (c >= 72203 && c <= 72242))))))) - : (c <= 72250 || (c < 72971 - ? (c < 72714 - ? (c < 72349 - ? (c < 72284 - ? c == 72272 - : c <= 72329) - : (c <= 72349 || (c < 72704 + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c >= 72968 && c <= 72969))))) - : (c <= 73008 || (c < 73112 - ? (c < 73063 - ? (c < 73056 - ? c == 73030 - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73097))) - : (c <= 73112 || (c < 73476 - ? (c < 73474 + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 ? (c >= 73440 && c <= 73458) - : c <= 73474) - : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) - : (c <= 73648 || (c < 94179 - ? (c < 92880 - ? (c < 78913 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78895))) - : (c <= 78918 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))))) - : (c <= 92909 || (c < 93760 - ? (c < 93027 - ? (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995) - : (c <= 93047 || (c >= 93053 && c <= 93071))) - : (c <= 93823 || (c < 94099 - ? (c < 94032 - ? (c >= 93952 && c <= 94026) - : c <= 94032) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94179 || (c < 110948 - ? (c < 110589 - ? (c < 101632 - ? (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589) - : (c <= 101640 || (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43785 - ? (c < 3804 - ? (c < 2759 - ? (c < 2048 - ? (c < 1155 +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 910 ? (c < 736 - ? (c < 183 + ? (c < 186 ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : (c <= 'Z' || c == '_')) + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') : (c <= 'z' || (c < 181 ? c == 170 : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 ? (c < 750 ? c == 748 : c <= 750) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c < 1015 + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 ? (c >= 931 && c <= 1013) - : c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || (c < 2045 - ? c == 2042 - : c <= 2045))))))))) - : (c <= 2093 || (c < 2561 - ? (c < 2474 - ? (c < 2275 - ? (c < 2160 + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 ? (c < 2144 - ? (c >= 2112 && c <= 2139) + ? (c >= 2112 && c <= 2136) : c <= 2154) - : (c <= 2183 || (c < 2200 - ? (c >= 2185 && c <= 2190) - : c <= 2273))) - : (c <= 2403 || (c < 2437 - ? (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472))))) - : (c <= 2480 || (c < 2519 - ? (c < 2492 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2500 || (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510))) - : (c <= 2519 || (c < 2534 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2531) - : (c <= 2545 || (c < 2558 - ? c == 2556 - : c <= 2558))))))) - : (c <= 2563 || (c < 2641 - ? (c < 2613 - ? (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c < 2610 + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 ? (c >= 2602 && c <= 2608) - : c <= 2611))) - : (c <= 2614 || (c < 2622 - ? (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620) - : (c <= 2626 || (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637))))) - : (c <= 2641 || (c < 2703 - ? (c < 2662 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2677 || (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701))) - : (c <= 2705 || (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))))))))) - : (c <= 2761 || (c < 3200 - ? (c < 2969 - ? (c < 2876 - ? (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c < 2869 + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 ? (c >= 2866 && c <= 2867) - : c <= 2873))))) - : (c <= 2884 || (c < 2918 - ? (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915))) - : (c <= 2927 || (c < 2949 - ? (c < 2946 + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 ? c == 2929 : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))))))) - : (c <= 2970 || (c < 3072 - ? (c < 3006 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3010 || (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))))) - : (c <= 3084 || (c < 3146 - ? (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))) - : (c <= 3149 || (c < 3165 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3165 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))))))))) - : (c <= 3203 || (c < 3461 - ? (c < 3302 - ? (c < 3260 - ? (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))) - : (c <= 3268 || (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3402 - ? (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3315) - : c <= 3340) - : (c <= 3344 || (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400))) - : (c <= 3406 || (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))))))) - : (c <= 3478 || (c < 3648 - ? (c < 3535 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))) - : (c <= 3540 || (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))))) - : (c <= 3662 || (c < 3749 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747))) - : (c <= 3749 || (c < 3782 - ? (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780) - : (c <= 3782 || (c < 3792 - ? (c >= 3784 && c <= 3790) - : c <= 3801))))))))))))) - : (c <= 3807 || (c < 8064 - ? (c < 5998 - ? (c < 4746 - ? (c < 4096 - ? (c < 3902 - ? (c < 3893 - ? (c < 3864 - ? c == 3840 - : (c <= 3865 || (c >= 3872 && c <= 3881))) - : (c <= 3893 || (c < 3897 - ? c == 3895 - : c <= 3897))) - : (c <= 3911 || (c < 3974 - ? (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972) - : (c <= 3991 || (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038))))) - : (c <= 4169 || (c < 4348 - ? (c < 4295 - ? (c < 4256 - ? (c >= 4176 && c <= 4253) - : c <= 4293) - : (c <= 4295 || (c < 4304 + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 ? c == 4301 - : c <= 4346))) - : (c <= 4680 || (c < 4696 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694) - : (c <= 4696 || (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4808 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))) - : (c <= 4822 || (c < 4888 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977))))) - : (c <= 5007 || (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5919 + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5909) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))))))) - : (c <= 6000 || (c < 6823 - ? (c < 6432 - ? (c < 6155 - ? (c < 6103 + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6159 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))))) - : (c <= 6443 || (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))))) - : (c <= 6823 || (c < 7357 - ? (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6862) - : (c <= 6988 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354))))) - : (c <= 7359 || (c < 8008 - ? (c < 7424 - ? (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 ? (c < 8025 ? (c >= 8016 && c <= 8023) : c <= 8025) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))))))))))) - : (c <= 8116 || (c < 12321 - ? (c < 8488 - ? (c < 8319 - ? (c < 8160 - ? (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 ? (c >= 8144 && c <= 8147) - : c <= 8155))) - : (c <= 8172 || (c < 8255 - ? (c < 8182 + : c <= 8155) + : (c <= 8172 || (c < 8182 ? (c >= 8178 && c <= 8180) - : c <= 8188) - : (c <= 8256 || (c < 8305 - ? c == 8276 - : c <= 8305))))) - : (c <= 8319 || (c < 8455 - ? (c < 8417 - ? (c < 8400 - ? (c >= 8336 && c <= 8348) - : c <= 8412) - : (c <= 8417 || (c < 8450 - ? (c >= 8421 && c <= 8432) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))))))) - : (c <= 8488 || (c < 11631 - ? (c < 11264 - ? (c < 8517 + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || (c < 8544 - ? c == 8526 - : c <= 8584))) - : (c <= 11492 || (c < 11559 - ? (c < 11520 - ? (c >= 11499 && c <= 11507) - : c <= 11557) - : (c <= 11559 || (c < 11568 + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 ? c == 11565 - : c <= 11623))))) - : (c <= 11631 || (c < 11712 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11647 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710))) - : (c <= 11718 || (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c < 12293 - ? (c >= 11744 && c <= 11775) - : c <= 12295))))))))) - : (c <= 12335 || (c < 42963 - ? (c < 13312 - ? (c < 12449 - ? (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447))) - : (c <= 12538 || (c < 12593 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))))) - : (c <= 19903 || (c < 42612 - ? (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))) - : (c <= 42621 || (c < 42786 - ? (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))))))) - : (c <= 42963 || (c < 43392 - ? (c < 43216 - ? (c < 43052 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43047) - : (c <= 43052 || (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205))) - : (c <= 43225 || (c < 43261 - ? (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259) - : (c <= 43309 || (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388))))) - : (c <= 43456 || (c < 43616 - ? (c < 43520 - ? (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518) - : (c <= 43574 || (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609))) - : (c <= 43638 || (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))))))))))))))) - : (c <= 43790 || (c < 71960 - ? (c < 67840 - ? (c < 65549 - ? (c < 64848 - ? (c < 64112 - ? (c < 44012 - ? (c < 43824 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))) - : (c <= 44013 || (c < 55216 + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 ? (c < 44032 - ? (c >= 44016 && c <= 44025) + ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))))) - : (c <= 64217 || (c < 64318 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64296 || (c < 64312 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829))))))) - : (c <= 64911 || (c < 65149 - ? (c < 65101 - ? (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))) - : (c <= 65103 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))))) - : (c <= 65149 || (c < 65382 - ? (c < 65313 - ? (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))))))))) - : (c <= 65574 || (c < 66928 - ? (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c < 66864 + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 ? (c >= 66816 && c <= 66855) - : c <= 66915))))))) - : (c <= 66938 || (c < 67463 - ? (c < 66995 - ? (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))) - : (c <= 67001 || (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67644 - ? (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) : (c <= 67644 || (c < 67712 ? (c < 67680 ? (c >= 67647 && c <= 67669) : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70163 - ? (c < 69291 - ? (c < 68288 - ? (c < 68117 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115))) - : (c <= 68119 || (c < 68159 - ? (c < 68152 - ? (c >= 68121 && c <= 68149) - : c <= 68154) - : (c <= 68159 || (c < 68224 - ? (c >= 68192 && c <= 68220) - : c <= 68252))))) - : (c <= 68295 || (c < 68608 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68326) - : c <= 68405) - : (c <= 68437 || (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497))) - : (c <= 68680 || (c < 68864 - ? (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850) - : (c <= 68903 || (c < 69248 - ? (c >= 68912 && c <= 68921) - : c <= 69289))))))) - : (c <= 69292 || (c < 69840 - ? (c < 69552 - ? (c < 69415 - ? (c < 69373 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69456) - : c <= 69509))) - : (c <= 69572 || (c < 69734 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702) - : (c <= 69749 || (c < 69826 - ? (c >= 69759 && c <= 69818) - : c <= 69826))))) - : (c <= 69864 || (c < 70006 - ? (c < 69942 - ? (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))) - : (c <= 70006 || (c < 70094 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092) - : (c <= 70106 || (c < 70144 + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 ? c == 70108 - : c <= 70161))))))))) - : (c <= 70199 || (c < 70656 - ? (c < 70419 - ? (c < 70303 - ? (c < 70280 - ? (c < 70272 - ? (c >= 70206 && c <= 70209) - : c <= 70278) - : (c <= 70280 || (c < 70287 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 ? (c >= 70282 && c <= 70285) - : c <= 70301))) - : (c <= 70312 || (c < 70400 - ? (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393) - : (c <= 70403 || (c < 70415 - ? (c >= 70405 && c <= 70412) - : c <= 70416))))) - : (c <= 70440 || (c < 70475 - ? (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || (c < 70471 - ? (c >= 70459 && c <= 70468) - : c <= 70472))) - : (c <= 70477 || (c < 70493 - ? (c < 70487 - ? c == 70480 - : c <= 70487) - : (c <= 70499 || (c < 70512 - ? (c >= 70502 && c <= 70508) - : c <= 70516))))))) - : (c <= 70730 || (c < 71296 - ? (c < 71040 - ? (c < 70784 - ? (c < 70750 - ? (c >= 70736 && c <= 70745) - : c <= 70753) - : (c <= 70853 || (c < 70864 + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71168 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : c <= 71133) - : (c <= 71232 || (c < 71248 - ? c == 71236 - : c <= 71257))))) - : (c <= 71352 || (c < 71680 - ? (c < 71453 - ? (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450) - : (c <= 71467 || (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494))) - : (c <= 71738 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942) - : (c <= 71945 || (c < 71957 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 ? (c >= 71948 && c <= 71955) - : c <= 71958))))))))))))) - : (c <= 71989 || (c < 119995 - ? (c < 92784 - ? (c < 73023 - ? (c < 72704 - ? (c < 72163 - ? (c < 72096 - ? (c < 71995 - ? (c >= 71991 && c <= 71992) - : (c <= 72003 || (c >= 72016 && c <= 72025))) - : (c <= 72103 || (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161))) - : (c <= 72164 || (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72368 - ? c == 72349 - : c <= 72440))))) - : (c <= 72712 || (c < 72873 - ? (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))) - : (c <= 72886 || (c < 72971 + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))))))) - : (c <= 73031 || (c < 73552 - ? (c < 73107 - ? (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105))) - : (c <= 73112 || (c < 73472 - ? (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462) - : (c <= 73488 || (c < 73534 - ? (c >= 73490 && c <= 73530) - : c <= 73538))))) - : (c <= 73561 || (c < 77824 - ? (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78895 || (c < 92160 - ? (c < 82944 - ? (c >= 78912 && c <= 78933) - : c <= 83526) - : (c <= 92728 || (c < 92768 - ? (c >= 92736 && c <= 92766) - : c <= 92777))))))))) - : (c <= 92862 || (c < 110928 - ? (c < 94095 - ? (c < 93008 - ? (c < 92912 - ? (c < 92880 - ? (c >= 92864 && c <= 92873) - : c <= 92909) - : (c <= 92916 || (c < 92992 - ? (c >= 92928 && c <= 92982) - : c <= 92995))) - : (c <= 93017 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c < 94031 - ? (c >= 93952 && c <= 94026) - : c <= 94087))))) - : (c <= 94111 || (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110589 - ? (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587) - : (c <= 110590 || (c < 110898 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 ? (c >= 110592 && c <= 110882) - : c <= 110898))))))) - : (c <= 110930 || (c < 119149 - ? (c < 113792 - ? (c < 110960 - ? (c < 110948 - ? c == 110933 - : c <= 110951) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788))) - : (c <= 113800 || (c < 118528 - ? (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 118573 || (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145))))) - : (c <= 119154 || (c < 119894 - ? (c < 119210 - ? (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179) - : (c <= 119213 || (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892))) - : (c <= 119964 || (c < 119973 + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 ? (c < 119970 ? (c >= 119966 && c <= 119967) : c <= 119970) : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))))))))))) - : (c <= 119995 || (c < 124912 - ? (c < 121403 - ? (c < 120514 - ? (c < 120123 - ? (c < 120077 + : c <= 119993))) + : (c <= 119995 || (c < 120071 ? (c < 120005 ? (c >= 119997 && c <= 120003) - : (c <= 120069 || (c >= 120071 && c <= 120074))) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c < 120488 + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 ? (c >= 120146 && c <= 120485) - : c <= 120512))))) - : (c <= 120538 || (c < 120688 - ? (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686))) - : (c <= 120712 || (c < 120772 - ? (c < 120746 - ? (c >= 120714 && c <= 120744) - : c <= 120770) - : (c <= 120779 || (c < 121344 - ? (c >= 120782 && c <= 120831) - : c <= 121398))))))) - : (c <= 121452 || (c < 122928 - ? (c < 122661 - ? (c < 121499 - ? (c < 121476 - ? c == 121461 - : c <= 121476) - : (c <= 121503 || (c < 122624 - ? (c >= 121505 && c <= 121519) - : c <= 122654))) - : (c <= 122666 || (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))))) - : (c <= 122989 || (c < 123536 - ? (c < 123184 - ? (c < 123136 - ? c == 123023 - : c <= 123180) - : (c <= 123197 || (c < 123214 - ? (c >= 123200 && c <= 123209) - : c <= 123214))) - : (c <= 123566 || (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123641) - : c <= 124153) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) : (c <= 126583 || (c < 126592 ? (c < 126590 ? (c >= 126585 && c <= 126588) : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 ? (c < 131072 - ? (c < 130032 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_identifier_character_set_5(int32_t c) { + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'a' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 192 + ? (c < 186 + ? c == 183 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))))) + : (c <= 721 || (c < 891 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887))) + : (c <= 893 || (c < 908 + ? (c < 902 + ? c == 895 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))))))) + : (c <= 1153 || (c < 1519 + ? (c < 1425 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1155 && c <= 1159) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1469 || (c < 1476 + ? (c < 1473 + ? c == 1471 + : c <= 1474) + : (c <= 1477 || (c < 1488 + ? c == 1479 + : c <= 1514))))) + : (c <= 1522 || (c < 1770 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1552 && c <= 1562) + : c <= 1641) + : (c <= 1747 || (c < 1759 + ? (c >= 1749 && c <= 1756) + : c <= 1768))) + : (c <= 1788 || (c < 1869 + ? (c < 1808 + ? c == 1791 + : c <= 1866) + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 + ? (c >= 2759 && c <= 2761) + : c <= 2765) + : (c <= 2768 || (c < 2790 + ? (c >= 2784 && c <= 2787) + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828) + : (c <= 2832 || (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884) + : (c <= 2888 || (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406) + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793) + : (c <= 6809 || (c < 6832 + ? c == 6823 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 + ? (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))) + : (c <= 8348 || (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 + ? (c < 8490 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 11775 || (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025) + : (c <= 55203 || (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572) + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 + ? (c < 70108 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73102) + : (c <= 73105 || (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485) + : (c <= 120512 || (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922) + : (c <= 123180 || (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177977) + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c < 917760 - ? (c >= 201552 && c <= 205743) - : c <= 917999))))))))))))))))); + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8289,20 +8222,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(13) END_STATE(); case 15: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(17) END_STATE(); case 16: - if (lookahead == '\n') SKIP(30) + if (lookahead == '\n') SKIP(17) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') SKIP(19) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(17) - END_STATE(); - case 19: if (lookahead == '\n') ADVANCE(86); if (lookahead == '!') ADVANCE(46); if (lookahead == '%') ADVANCE(156); @@ -8315,12 +8241,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(174); if (lookahead == '=') ADVANCE(47); if (lookahead == '>') ADVANCE(170); - if (lookahead == '\\') SKIP(18) + if (lookahead == '\\') SKIP(16) if (lookahead == '^') ADVANCE(162); if (lookahead == '|') ADVANCE(161); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(17) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(30) + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(30) + if (lookahead == '\r') SKIP(18) END_STATE(); case 20: if (lookahead == '\n') SKIP(35) @@ -8330,25 +8263,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(20) END_STATE(); case 22: - if (lookahead == '\n') SKIP(36) - if (lookahead == '"') ADVANCE(237); - if (lookahead == '/') ADVANCE(238); - if (lookahead == '\\') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(241); - if (lookahead != 0) ADVANCE(242); - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(244); - if (lookahead == '\r') ADVANCE(243); - if (lookahead == 'U') ADVANCE(76); - if (lookahead == 'u') ADVANCE(72); - if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (lookahead != 0) ADVANCE(243); - END_STATE(); - case 24: if (lookahead == '\n') ADVANCE(87); if (lookahead == '(') ADVANCE(89); if (lookahead == '/') ADVANCE(131); @@ -8358,7 +8272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(128); if (lookahead != 0) ADVANCE(132); END_STATE(); - case 25: + case 23: if (lookahead == '\n') ADVANCE(87); if (lookahead == '/') ADVANCE(131); if (lookahead == '\\') ADVANCE(129); @@ -8367,6 +8281,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(128); if (lookahead != 0) ADVANCE(132); END_STATE(); + case 24: + if (lookahead == '\n') SKIP(36) + if (lookahead == '"') ADVANCE(237); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(241); + if (lookahead != 0) ADVANCE(242); + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(244); + if (lookahead == '\r') ADVANCE(243); + if (lookahead == 'U') ADVANCE(76); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'x') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); + if (lookahead != 0) ADVANCE(243); + END_STATE(); case 26: if (lookahead == '\n') SKIP(44) if (lookahead == '/') ADVANCE(231); @@ -8488,7 +8421,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(213); if (lookahead == 'L') ADVANCE(257); if (lookahead == 'U') ADVANCE(258); - if (lookahead == '\\') SKIP(16) + if (lookahead == '\\') SKIP(19) if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); if (lookahead == 'u') ADVANCE(259); if (lookahead == '~') ADVANCE(141); @@ -8642,7 +8575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '"') ADVANCE(237); if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8681,7 +8614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9898,7 +9831,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -9964,7 +9897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 244: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); END_STATE(); case 245: ACCEPT_TOKEN(sym_escape_sequence); @@ -10122,1135 +10055,1160 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(12); if (lookahead == 'i') ADVANCE(13); if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'r') ADVANCE(15); - if (lookahead == 's') ADVANCE(16); - if (lookahead == 't') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); - if (lookahead == 'v') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'r') ADVANCE(16); + if (lookahead == 's') ADVANCE(17); + if (lookahead == 't') ADVANCE(18); + if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'v') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'A') ADVANCE(21); + if (lookahead == 'A') ADVANCE(22); END_STATE(); case 2: - if (lookahead == 'U') ADVANCE(22); + if (lookahead == 'U') ADVANCE(23); END_STATE(); case 3: - if (lookahead == 'R') ADVANCE(23); + if (lookahead == 'R') ADVANCE(24); END_STATE(); case 4: if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(24) + if (lookahead == '\r') SKIP(25) END_STATE(); case 5: - if (lookahead == 'A') ADVANCE(25); - if (lookahead == 'G') ADVANCE(26); - if (lookahead == 'N') ADVANCE(27); - if (lookahead == '_') ADVANCE(28); - if (lookahead == 'u') ADVANCE(29); + if (lookahead == 'A') ADVANCE(26); + if (lookahead == 'G') ADVANCE(27); + if (lookahead == 'N') ADVANCE(28); + if (lookahead == '_') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); END_STATE(); case 6: - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'r') ADVANCE(33); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'h') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'a') ADVANCE(34); + if (lookahead == 'h') ADVANCE(35); + if (lookahead == 'o') ADVANCE(36); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(36); - if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'e') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(38); - if (lookahead == 'n') ADVANCE(39); - if (lookahead == 'x') ADVANCE(40); + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'x') ADVANCE(41); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(41); - if (lookahead == 'l') ADVANCE(42); - if (lookahead == 'o') ADVANCE(43); + if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'o') ADVANCE(44); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'o') ADVANCE(45); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(45); - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'f') ADVANCE(46); + if (lookahead == 'n') ADVANCE(47); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'f') ADVANCE(49); END_STATE(); case 16: - if (lookahead == 'h') ADVANCE(49); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 's') ADVANCE(51); - if (lookahead == 't') ADVANCE(52); - if (lookahead == 'w') ADVANCE(53); + if (lookahead == 'e') ADVANCE(50); END_STATE(); case 17: - if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'y') ADVANCE(55); + if (lookahead == 'h') ADVANCE(51); + if (lookahead == 'i') ADVANCE(52); + if (lookahead == 's') ADVANCE(53); + if (lookahead == 't') ADVANCE(54); + if (lookahead == 'w') ADVANCE(55); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(56); - if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'y') ADVANCE(57); END_STATE(); case 19: - if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'n') ADVANCE(59); END_STATE(); case 20: - if (lookahead == 'h') ADVANCE(59); + if (lookahead == 'o') ADVANCE(60); END_STATE(); case 21: - if (lookahead == 'L') ADVANCE(60); + if (lookahead == 'h') ADVANCE(61); END_STATE(); case 22: - if (lookahead == 'L') ADVANCE(61); + if (lookahead == 'L') ADVANCE(62); END_STATE(); case 23: - if (lookahead == 'U') ADVANCE(62); + if (lookahead == 'L') ADVANCE(63); END_STATE(); case 24: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'U') ADVANCE(64); END_STATE(); case 25: - if (lookahead == 't') ADVANCE(63); + if (lookahead == '\n') SKIP(0) END_STATE(); case 26: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 't') ADVANCE(65); END_STATE(); case 27: - if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 28: - if (lookahead == 'a') ADVANCE(66); - if (lookahead == 'b') ADVANCE(67); - if (lookahead == 'c') ADVANCE(68); - if (lookahead == 'd') ADVANCE(69); - if (lookahead == 'f') ADVANCE(70); - if (lookahead == 'r') ADVANCE(71); - if (lookahead == 's') ADVANCE(72); - if (lookahead == 't') ADVANCE(73); - if (lookahead == 'u') ADVANCE(74); - if (lookahead == 'v') ADVANCE(75); + if (lookahead == 'o') ADVANCE(67); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'b') ADVANCE(69); + if (lookahead == 'c') ADVANCE(70); + if (lookahead == 'd') ADVANCE(71); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'r') ADVANCE(73); + if (lookahead == 's') ADVANCE(74); + if (lookahead == 't') ADVANCE(75); + if (lookahead == 'u') ADVANCE(76); + if (lookahead == 'v') ADVANCE(77); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 31: - if (lookahead == 'o') ADVANCE(78); + if (lookahead == 't') ADVANCE(79); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'o') ADVANCE(80); END_STATE(); case 33: - if (lookahead == 's') ADVANCE(80); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 34: - if (lookahead == 'a') ADVANCE(81); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 35: - if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 36: - if (lookahead == 'f') ADVANCE(83); + if (lookahead == 'n') ADVANCE(84); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(84); + if (lookahead == 'f') ADVANCE(85); END_STATE(); case 38: - if (lookahead == 's') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 39: - if (lookahead == 'u') ADVANCE(86); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 40: - if (lookahead == 't') ADVANCE(87); + if (lookahead == 'u') ADVANCE(88); END_STATE(); case 41: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == 't') ADVANCE(89); END_STATE(); case 42: - if (lookahead == 'o') ADVANCE(89); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 43: - if (lookahead == 'r') ADVANCE(90); + if (lookahead == 'o') ADVANCE(91); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(92); - if (lookahead == 't') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 47: - if (lookahead == 'n') ADVANCE(94); + if (lookahead == 'l') ADVANCE(94); + if (lookahead == 't') ADVANCE(95); END_STATE(); case 48: - if (lookahead == 'g') ADVANCE(95); - if (lookahead == 's') ADVANCE(96); - if (lookahead == 't') ADVANCE(97); + if (lookahead == 'n') ADVANCE(96); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(98); + if (lookahead == 'f') ADVANCE(97); END_STATE(); case 50: - if (lookahead == 'g') ADVANCE(99); - if (lookahead == 'z') ADVANCE(100); + if (lookahead == 'g') ADVANCE(98); + if (lookahead == 's') ADVANCE(99); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 51: - if (lookahead == 'i') ADVANCE(101); + if (lookahead == 'o') ADVANCE(101); END_STATE(); case 52: - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'r') ADVANCE(103); + if (lookahead == 'g') ADVANCE(102); + if (lookahead == 'z') ADVANCE(103); END_STATE(); case 53: if (lookahead == 'i') ADVANCE(104); END_STATE(); case 54: - if (lookahead == 'u') ADVANCE(105); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'r') ADVANCE(106); END_STATE(); case 55: - if (lookahead == 'p') ADVANCE(106); + if (lookahead == 'i') ADVANCE(107); END_STATE(); case 56: - if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'u') ADVANCE(108); END_STATE(); case 57: - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 's') ADVANCE(109); + if (lookahead == 'p') ADVANCE(109); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(110); - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'i') ADVANCE(111); + if (lookahead == 's') ADVANCE(112); END_STATE(); case 60: - if (lookahead == 'S') ADVANCE(113); + if (lookahead == 'i') ADVANCE(113); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 61: - if (lookahead == 'L') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); END_STATE(); case 62: - if (lookahead == 'E') ADVANCE(115); + if (lookahead == 'S') ADVANCE(116); END_STATE(); case 63: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'L') ADVANCE(117); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'E') ADVANCE(118); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(118); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 66: - if (lookahead == 't') ADVANCE(119); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == 'r') ADVANCE(121); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(121); - if (lookahead == 'l') ADVANCE(122); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'l') ADVANCE(125); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'e') ADVANCE(126); END_STATE(); case 72: - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(127); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 73: - if (lookahead == 'h') ADVANCE(128); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(129); - if (lookahead == 'p') ADVANCE(130); + if (lookahead == 'p') ADVANCE(129); + if (lookahead == 't') ADVANCE(130); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'h') ADVANCE(131); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(133); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 78: - if (lookahead == 'l') ADVANCE(134); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'o') ADVANCE(136); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'l') ADVANCE(137); END_STATE(); case 81: - if (lookahead == 'r') ADVANCE(137); + if (lookahead == 'a') ADVANCE(138); END_STATE(); case 82: - if (lookahead == 's') ADVANCE(138); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 83: - if (lookahead == 'a') ADVANCE(140); - if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'r') ADVANCE(140); END_STATE(); case 84: - if (lookahead == 'b') ADVANCE(142); + if (lookahead == 's') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'a') ADVANCE(143); + if (lookahead == 'i') ADVANCE(144); END_STATE(); case 86: - if (lookahead == 'm') ADVANCE(144); + if (lookahead == 'b') ADVANCE(145); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 88: - if (lookahead == 's') ADVANCE(146); + if (lookahead == 'm') ADVANCE(147); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'e') ADVANCE(148); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(149); END_STATE(); case 91: - if (lookahead == 'o') ADVANCE(148); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 92: - if (lookahead == 'i') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 93: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(150); - if (lookahead == '3') ADVANCE(151); - if (lookahead == '6') ADVANCE(152); - if (lookahead == '8') ADVANCE(153); - if (lookahead == 'p') ADVANCE(154); + if (lookahead == 'o') ADVANCE(151); END_STATE(); case 94: - if (lookahead == 'g') ADVANCE(155); + if (lookahead == 'i') ADVANCE(152); END_STATE(); case 95: - if (lookahead == 'i') ADVANCE(156); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(153); + if (lookahead == '3') ADVANCE(154); + if (lookahead == '6') ADVANCE(155); + if (lookahead == '8') ADVANCE(156); + if (lookahead == 'p') ADVANCE(157); END_STATE(); case 96: - if (lookahead == 't') ADVANCE(157); + if (lookahead == 'g') ADVANCE(158); END_STATE(); case 97: - if (lookahead == 'u') ADVANCE(158); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 98: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 'i') ADVANCE(160); END_STATE(); case 99: - if (lookahead == 'n') ADVANCE(160); + if (lookahead == 't') ADVANCE(161); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(161); + if (lookahead == 'u') ADVANCE(162); END_STATE(); case 101: - if (lookahead == 'z') ADVANCE(162); + if (lookahead == 'r') ADVANCE(163); END_STATE(); case 102: - if (lookahead == 't') ADVANCE(163); + if (lookahead == 'n') ADVANCE(164); END_STATE(); case 103: - if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(165); + if (lookahead == 'z') ADVANCE(166); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'u') ADVANCE(168); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 108: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'e') ADVANCE(118); END_STATE(); case 109: - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 110: - if (lookahead == 'd') ADVANCE(134); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 111: - if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'o') ADVANCE(172); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'i') ADVANCE(173); END_STATE(); case 113: - if (lookahead == 'E') ADVANCE(172); + if (lookahead == 'd') ADVANCE(137); END_STATE(); case 114: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'a') ADVANCE(174); END_STATE(); case 115: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'l') ADVANCE(175); END_STATE(); case 116: - if (lookahead == 'm') ADVANCE(173); + if (lookahead == 'E') ADVANCE(176); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(174); + ACCEPT_TOKEN(sym_null); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(175); + ACCEPT_TOKEN(sym_true); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 'm') ADVANCE(177); END_STATE(); case 120: - if (lookahead == 's') ADVANCE(177); + if (lookahead == 'e') ADVANCE(178); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 122: - if (lookahead == 'r') ADVANCE(179); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 123: - if (lookahead == 'c') ADVANCE(180); + if (lookahead == 's') ADVANCE(181); END_STATE(); case 124: - if (lookahead == 's') ADVANCE(181); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 125: - if (lookahead == 's') ADVANCE(182); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 126: - if (lookahead == 't') ADVANCE(183); + if (lookahead == 'c') ADVANCE(184); END_STATE(); case 127: - if (lookahead == 'd') ADVANCE(184); + if (lookahead == 's') ADVANCE(185); END_STATE(); case 128: - if (lookahead == 'i') ADVANCE(185); + if (lookahead == 's') ADVANCE(186); END_STATE(); case 129: - if (lookahead == 'a') ADVANCE(186); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(187); + if (lookahead == 'd') ADVANCE(188); END_STATE(); case 131: - if (lookahead == 'c') ADVANCE(188); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(189); + if (lookahead == 'a') ADVANCE(190); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 't') ADVANCE(191); END_STATE(); case 134: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'c') ADVANCE(192); END_STATE(); case 135: - if (lookahead == 'k') ADVANCE(190); + if (lookahead == 'l') ADVANCE(193); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_case); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 137: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(191); - if (lookahead == '3') ADVANCE(192); - if (lookahead == '6') ADVANCE(193); - if (lookahead == '8') ADVANCE(194); - if (lookahead == 'p') ADVANCE(195); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(196); + if (lookahead == 'k') ADVANCE(194); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 140: - if (lookahead == 'u') ADVANCE(198); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(195); + if (lookahead == '3') ADVANCE(196); + if (lookahead == '6') ADVANCE(197); + if (lookahead == '8') ADVANCE(198); + if (lookahead == 'p') ADVANCE(199); END_STATE(); case 141: - if (lookahead == 'n') ADVANCE(199); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 142: - if (lookahead == 'l') ADVANCE(200); + if (lookahead == 'i') ADVANCE(201); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(202); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'l') ADVANCE(204); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 150: - if (lookahead == '6') ADVANCE(203); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 151: - if (lookahead == '2') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 152: - if (lookahead == '4') ADVANCE(205); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 153: - if (lookahead == '_') ADVANCE(206); + if (lookahead == '6') ADVANCE(207); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(207); + if (lookahead == '2') ADVANCE(208); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == '4') ADVANCE(209); END_STATE(); case 156: - if (lookahead == 's') ADVANCE(208); + if (lookahead == '_') ADVANCE(210); END_STATE(); case 157: - if (lookahead == 'r') ADVANCE(209); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 159: - if (lookahead == 't') ADVANCE(211); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 160: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 's') ADVANCE(213); END_STATE(); case 161: - if (lookahead == '_') ADVANCE(213); - if (lookahead == 'o') ADVANCE(214); + if (lookahead == 'r') ADVANCE(214); END_STATE(); case 162: - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'r') ADVANCE(215); END_STATE(); case 163: - if (lookahead == 'i') ADVANCE(216); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 164: - if (lookahead == 'c') ADVANCE(217); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 165: - if (lookahead == 'c') ADVANCE(218); + if (lookahead == '_') ADVANCE(218); + if (lookahead == 'o') ADVANCE(219); END_STATE(); case 166: - if (lookahead == 'd') ADVANCE(219); + if (lookahead == 'e') ADVANCE(220); END_STATE(); case 167: - if (lookahead == '1') ADVANCE(220); - if (lookahead == '3') ADVANCE(221); - if (lookahead == '6') ADVANCE(222); - if (lookahead == '8') ADVANCE(223); - if (lookahead == 'p') ADVANCE(224); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 168: - if (lookahead == 'n') ADVANCE(225); + if (lookahead == 'c') ADVANCE(222); END_STATE(); case 169: - if (lookahead == 'g') ADVANCE(226); + if (lookahead == 'c') ADVANCE(223); END_STATE(); case 170: - if (lookahead == 't') ADVANCE(227); + if (lookahead == 'd') ADVANCE(224); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(228); + if (lookahead == '1') ADVANCE(225); + if (lookahead == '3') ADVANCE(226); + if (lookahead == '6') ADVANCE(227); + if (lookahead == '8') ADVANCE(228); + if (lookahead == 'p') ADVANCE(229); END_STATE(); case 172: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'n') ADVANCE(230); END_STATE(); case 173: - if (lookahead == 'i') ADVANCE(229); + if (lookahead == 'g') ADVANCE(231); END_STATE(); case 174: - if (lookahead == 'r') ADVANCE(230); + if (lookahead == 't') ADVANCE(232); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(231); + if (lookahead == 'e') ADVANCE(233); END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(232); + ACCEPT_TOKEN(sym_false); END_STATE(); case 177: - if (lookahead == 'e') ADVANCE(233); + if (lookahead == 'i') ADVANCE(234); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(234); + if (lookahead == 'r') ADVANCE(235); END_STATE(); case 179: - if (lookahead == 'c') ADVANCE(235); + if (lookahead == 't') ADVANCE(236); END_STATE(); case 180: - if (lookahead == 'l') ADVANCE(236); + if (lookahead == 'r') ADVANCE(237); END_STATE(); case 181: - if (lookahead == 't') ADVANCE(237); + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(238); + if (lookahead == 'c') ADVANCE(239); END_STATE(); case 183: - if (lookahead == 'r') ADVANCE(239); + if (lookahead == 'c') ADVANCE(240); END_STATE(); case 184: - if (lookahead == 'c') ADVANCE(240); + if (lookahead == 'l') ADVANCE(241); END_STATE(); case 185: - if (lookahead == 's') ADVANCE(241); + if (lookahead == 't') ADVANCE(242); END_STATE(); case 186: - if (lookahead == 'l') ADVANCE(242); + if (lookahead == 't') ADVANCE(243); END_STATE(); case 187: - if (lookahead == 'r') ADVANCE(243); + if (lookahead == 'r') ADVANCE(244); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(244); + if (lookahead == 'c') ADVANCE(245); END_STATE(); case 189: - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 's') ADVANCE(246); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'l') ADVANCE(247); END_STATE(); case 191: - if (lookahead == '6') ADVANCE(246); + if (lookahead == 'r') ADVANCE(248); END_STATE(); case 192: - if (lookahead == '2') ADVANCE(247); + if (lookahead == 't') ADVANCE(249); END_STATE(); case 193: - if (lookahead == '4') ADVANCE(248); + if (lookahead == 'i') ADVANCE(250); END_STATE(); case 194: - if (lookahead == '_') ADVANCE(249); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(250); + if (lookahead == '6') ADVANCE(251); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == '2') ADVANCE(252); END_STATE(); case 197: - if (lookahead == 'n') ADVANCE(251); + if (lookahead == '4') ADVANCE(253); END_STATE(); case 198: - if (lookahead == 'l') ADVANCE(252); + if (lookahead == '_') ADVANCE(254); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 't') ADVANCE(255); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 201: - if (lookahead == 'n') ADVANCE(254); + if (lookahead == 'n') ADVANCE(256); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'l') ADVANCE(257); END_STATE(); case 203: - if (lookahead == '_') ADVANCE(256); + if (lookahead == 'e') ADVANCE(258); END_STATE(); case 204: - if (lookahead == '_') ADVANCE(257); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 205: - if (lookahead == '_') ADVANCE(258); + if (lookahead == 'n') ADVANCE(259); END_STATE(); case 206: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 207: - if (lookahead == 'r') ADVANCE(259); + if (lookahead == '_') ADVANCE(261); END_STATE(); case 208: - if (lookahead == 't') ADVANCE(260); + if (lookahead == '_') ADVANCE(262); END_STATE(); case 209: - if (lookahead == 'i') ADVANCE(261); + if (lookahead == '_') ADVANCE(263); END_STATE(); case 210: - if (lookahead == 'n') ADVANCE(262); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'r') ADVANCE(264); END_STATE(); case 212: - if (lookahead == 'd') ADVANCE(263); + if (lookahead == 't') ADVANCE(265); END_STATE(); case 213: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 't') ADVANCE(266); END_STATE(); case 214: - if (lookahead == 'f') ADVANCE(264); + if (lookahead == 'i') ADVANCE(267); END_STATE(); case 215: - if (lookahead == '_') ADVANCE(265); + if (lookahead == 'n') ADVANCE(268); END_STATE(); case 216: - if (lookahead == 'c') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(267); + if (lookahead == 'd') ADVANCE(269); END_STATE(); case 218: - if (lookahead == 'h') ADVANCE(268); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(269); + if (lookahead == 'f') ADVANCE(270); END_STATE(); case 220: - if (lookahead == '6') ADVANCE(270); + if (lookahead == '_') ADVANCE(271); END_STATE(); case 221: - if (lookahead == '2') ADVANCE(271); + if (lookahead == 'c') ADVANCE(272); END_STATE(); case 222: - if (lookahead == '4') ADVANCE(272); + if (lookahead == 't') ADVANCE(273); END_STATE(); case 223: - if (lookahead == '_') ADVANCE(273); + if (lookahead == 'h') ADVANCE(274); END_STATE(); case 224: - if (lookahead == 't') ADVANCE(274); + if (lookahead == 'e') ADVANCE(275); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == '6') ADVANCE(276); END_STATE(); case 226: - if (lookahead == 'n') ADVANCE(275); + if (lookahead == '2') ADVANCE(277); END_STATE(); case 227: - if (lookahead == 'i') ADVANCE(276); + if (lookahead == '4') ADVANCE(278); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '_') ADVANCE(279); END_STATE(); case 229: - if (lookahead == 'c') ADVANCE(277); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 230: - if (lookahead == 'i') ADVANCE(278); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 231: - if (lookahead == 'u') ADVANCE(279); + if (lookahead == 'n') ADVANCE(281); END_STATE(); case 232: - if (lookahead == 'i') ADVANCE(280); + if (lookahead == 'i') ADVANCE(282); END_STATE(); case 233: - if (lookahead == 'd') ADVANCE(281); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 234: - if (lookahead == 'l') ADVANCE(282); + if (lookahead == 'c') ADVANCE(283); END_STATE(); case 235: - if (lookahead == 'a') ADVANCE(283); + if (lookahead == 'i') ADVANCE(284); END_STATE(); case 236: - if (lookahead == 's') ADVANCE(284); + if (lookahead == 'u') ADVANCE(285); END_STATE(); case 237: - if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 238: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'd') ADVANCE(287); END_STATE(); case 239: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'l') ADVANCE(288); END_STATE(); case 240: - if (lookahead == 'a') ADVANCE(287); + if (lookahead == 'a') ADVANCE(289); END_STATE(); case 241: - if (lookahead == 'c') ADVANCE(288); + if (lookahead == 's') ADVANCE(290); END_STATE(); case 242: - if (lookahead == 'i') ADVANCE(289); + if (lookahead == 'c') ADVANCE(291); END_STATE(); case 243: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'r') ADVANCE(292); END_STATE(); case 244: - if (lookahead == 'o') ADVANCE(290); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 245: - if (lookahead == 'g') ADVANCE(291); + if (lookahead == 'a') ADVANCE(293); END_STATE(); case 246: - if (lookahead == '_') ADVANCE(292); + if (lookahead == 'c') ADVANCE(294); END_STATE(); case 247: - if (lookahead == '_') ADVANCE(293); + if (lookahead == 'i') ADVANCE(295); END_STATE(); case 248: - if (lookahead == '_') ADVANCE(294); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 249: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'o') ADVANCE(296); END_STATE(); case 250: - if (lookahead == 'r') ADVANCE(295); + if (lookahead == 'g') ADVANCE(297); END_STATE(); case 251: - if (lookahead == 'u') ADVANCE(296); + if (lookahead == '_') ADVANCE(298); END_STATE(); case 252: - if (lookahead == 't') ADVANCE(297); + if (lookahead == '_') ADVANCE(299); END_STATE(); case 253: - if (lookahead == 'd') ADVANCE(298); + if (lookahead == '_') ADVANCE(300); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'r') ADVANCE(301); END_STATE(); case 256: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'u') ADVANCE(302); END_STATE(); case 257: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 't') ADVANCE(303); END_STATE(); case 258: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'd') ADVANCE(304); END_STATE(); case 259: - if (lookahead == '_') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 260: - if (lookahead == 'e') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 261: - if (lookahead == 'c') ADVANCE(301); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == '_') ADVANCE(305); END_STATE(); case 265: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'o') ADVANCE(306); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'c') ADVANCE(308); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 269: - if (lookahead == 'f') ADVANCE(302); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 270: - if (lookahead == '_') ADVANCE(303); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 271: - if (lookahead == '_') ADVANCE(304); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 272: - if (lookahead == '_') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 273: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 274: - if (lookahead == 'r') ADVANCE(306); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 275: - if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'f') ADVANCE(309); END_STATE(); case 276: - if (lookahead == 'l') ADVANCE(308); + if (lookahead == '_') ADVANCE(310); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == '_') ADVANCE(311); END_STATE(); case 278: - if (lookahead == 'c') ADVANCE(309); + if (lookahead == '_') ADVANCE(312); END_STATE(); case 279: - if (lookahead == 'r') ADVANCE(310); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 280: - if (lookahead == 'b') ADVANCE(311); + if (lookahead == 'r') ADVANCE(313); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'e') ADVANCE(314); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'l') ADVANCE(315); END_STATE(); case 283: - if (lookahead == 'l') ADVANCE(312); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 284: - if (lookahead == 'p') ADVANCE(313); + if (lookahead == 'c') ADVANCE(316); END_STATE(); case 285: - if (lookahead == 'a') ADVANCE(314); + if (lookahead == 'r') ADVANCE(317); END_STATE(); case 286: - if (lookahead == 'i') ADVANCE(315); + if (lookahead == 'b') ADVANCE(318); END_STATE(); case 287: - if (lookahead == 'l') ADVANCE(316); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 288: - if (lookahead == 'a') ADVANCE(317); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 289: - if (lookahead == 'g') ADVANCE(318); + if (lookahead == 'l') ADVANCE(319); END_STATE(); case 290: - if (lookahead == 'r') ADVANCE(319); + if (lookahead == 'p') ADVANCE(320); END_STATE(); case 291: - if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'a') ADVANCE(321); END_STATE(); case 292: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'i') ADVANCE(322); END_STATE(); case 293: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'l') ADVANCE(323); END_STATE(); case 294: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'a') ADVANCE(324); END_STATE(); case 295: - if (lookahead == '_') ADVANCE(321); + if (lookahead == 'g') ADVANCE(325); END_STATE(); case 296: - if (lookahead == 'e') ADVANCE(322); + if (lookahead == 'r') ADVANCE(326); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'n') ADVANCE(327); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 299: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 300: - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 301: - if (lookahead == 't') ADVANCE(324); + if (lookahead == '_') ADVANCE(328); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 303: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 304: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 305: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 306: - if (lookahead == '_') ADVANCE(325); + if (lookahead == 'f') ADVANCE(330); END_STATE(); case 307: - if (lookahead == 'd') ADVANCE(326); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(327); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym__Generic); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 310: - if (lookahead == 'n') ADVANCE(328); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 311: - if (lookahead == 'u') ADVANCE(329); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 312: - if (lookahead == 'l') ADVANCE(330); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 313: - if (lookahead == 'e') ADVANCE(331); + if (lookahead == '_') ADVANCE(333); END_STATE(); case 314: - if (lookahead == 'l') ADVANCE(332); + if (lookahead == 'd') ADVANCE(334); END_STATE(); case 315: - if (lookahead == 'c') ADVANCE(333); + if (lookahead == 'e') ADVANCE(335); END_STATE(); case 316: - if (lookahead == 'l') ADVANCE(334); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 317: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'n') ADVANCE(336); END_STATE(); case 318: - if (lookahead == 'n') ADVANCE(336); + if (lookahead == 'u') ADVANCE(337); END_STATE(); case 319: - if (lookahead == 'c') ADVANCE(337); + if (lookahead == 'l') ADVANCE(338); END_STATE(); case 320: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'e') ADVANCE(339); END_STATE(); case 321: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'l') ADVANCE(340); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'c') ADVANCE(341); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'l') ADVANCE(342); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'l') ADVANCE(343); END_STATE(); case 325: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'n') ADVANCE(344); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'c') ADVANCE(345); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'e') ADVANCE(346); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 329: - if (lookahead == 't') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 331: - if (lookahead == 'c') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 332: - if (lookahead == 'l') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 333: - if (lookahead == 't') ADVANCE(342); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 335: - if (lookahead == 'l') ADVANCE(343); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 336: - if (lookahead == 'e') ADVANCE(344); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 337: - if (lookahead == 'a') ADVANCE(345); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 338: - if (lookahead == 'd') ADVANCE(346); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 339: - if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'c') ADVANCE(348); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 'l') ADVANCE(349); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 't') ADVANCE(350); END_STATE(); case 342: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(348); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'l') ADVANCE(351); END_STATE(); case 344: - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'e') ADVANCE(352); END_STATE(); case 345: - if (lookahead == 'l') ADVANCE(350); + if (lookahead == 'a') ADVANCE(353); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym__unaligned); + if (lookahead == 'd') ADVANCE(354); END_STATE(); case 347: - if (lookahead == '_') ADVANCE(351); + if (lookahead == 'e') ADVANCE(355); END_STATE(); case 348: - if (lookahead == '_') ADVANCE(352); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym___unaligned); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 350: - if (lookahead == 'l') ADVANCE(353); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(356); END_STATE(); case 351: - if (lookahead == '_') ADVANCE(354); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'd') ADVANCE(357); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'l') ADVANCE(358); END_STATE(); case 354: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 355: + if (lookahead == '_') ADVANCE(359); + END_STATE(); + case 356: + if (lookahead == '_') ADVANCE(360); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 358: + if (lookahead == 'l') ADVANCE(361); + END_STATE(); + case 359: + if (lookahead == '_') ADVANCE(362); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 362: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); default: @@ -11282,8 +11240,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [20] = {.lex_state = 28}, [21] = {.lex_state = 83}, [22] = {.lex_state = 83}, - [23] = {.lex_state = 29}, - [24] = {.lex_state = 29}, + [23] = {.lex_state = 83}, + [24] = {.lex_state = 83}, [25] = {.lex_state = 83}, [26] = {.lex_state = 83}, [27] = {.lex_state = 83}, @@ -11295,32 +11253,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 83}, [34] = {.lex_state = 83}, [35] = {.lex_state = 83}, - [36] = {.lex_state = 83}, + [36] = {.lex_state = 29}, [37] = {.lex_state = 83}, - [38] = {.lex_state = 83}, - [39] = {.lex_state = 83}, + [38] = {.lex_state = 29}, + [39] = {.lex_state = 29}, [40] = {.lex_state = 83}, - [41] = {.lex_state = 29}, + [41] = {.lex_state = 83}, [42] = {.lex_state = 83}, [43] = {.lex_state = 28}, [44] = {.lex_state = 28}, [45] = {.lex_state = 28}, [46] = {.lex_state = 28}, [47] = {.lex_state = 28}, - [48] = {.lex_state = 29}, - [49] = {.lex_state = 29}, - [50] = {.lex_state = 83}, + [48] = {.lex_state = 83}, + [49] = {.lex_state = 83}, + [50] = {.lex_state = 29}, [51] = {.lex_state = 83}, [52] = {.lex_state = 29}, [53] = {.lex_state = 29}, [54] = {.lex_state = 83}, [55] = {.lex_state = 83}, [56] = {.lex_state = 83}, - [57] = {.lex_state = 29}, + [57] = {.lex_state = 83}, [58] = {.lex_state = 83}, - [59] = {.lex_state = 83}, + [59] = {.lex_state = 29}, [60] = {.lex_state = 83}, - [61] = {.lex_state = 83}, + [61] = {.lex_state = 29}, [62] = {.lex_state = 83}, [63] = {.lex_state = 83}, [64] = {.lex_state = 83}, @@ -11382,34 +11340,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 28}, [121] = {.lex_state = 28}, [122] = {.lex_state = 28}, - [123] = {.lex_state = 28}, + [123] = {.lex_state = 27}, [124] = {.lex_state = 28}, - [125] = {.lex_state = 83}, - [126] = {.lex_state = 83}, - [127] = {.lex_state = 83}, - [128] = {.lex_state = 83}, + [125] = {.lex_state = 28}, + [126] = {.lex_state = 29}, + [127] = {.lex_state = 29}, + [128] = {.lex_state = 29}, [129] = {.lex_state = 83}, - [130] = {.lex_state = 29}, - [131] = {.lex_state = 29}, + [130] = {.lex_state = 83}, + [131] = {.lex_state = 83}, [132] = {.lex_state = 29}, [133] = {.lex_state = 83}, [134] = {.lex_state = 83}, [135] = {.lex_state = 83}, - [136] = {.lex_state = 83}, + [136] = {.lex_state = 29}, [137] = {.lex_state = 29}, - [138] = {.lex_state = 83}, - [139] = {.lex_state = 29}, + [138] = {.lex_state = 29}, + [139] = {.lex_state = 83}, [140] = {.lex_state = 83}, [141] = {.lex_state = 83}, [142] = {.lex_state = 83}, [143] = {.lex_state = 83}, [144] = {.lex_state = 83}, - [145] = {.lex_state = 29}, + [145] = {.lex_state = 83}, [146] = {.lex_state = 83}, [147] = {.lex_state = 29}, - [148] = {.lex_state = 83}, + [148] = {.lex_state = 29}, [149] = {.lex_state = 83}, - [150] = {.lex_state = 29}, + [150] = {.lex_state = 83}, [151] = {.lex_state = 83}, [152] = {.lex_state = 83}, [153] = {.lex_state = 83}, @@ -11424,27 +11382,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 83}, [163] = {.lex_state = 83}, [164] = {.lex_state = 83}, - [165] = {.lex_state = 29}, + [165] = {.lex_state = 83}, [166] = {.lex_state = 29}, - [167] = {.lex_state = 29}, + [167] = {.lex_state = 83}, [168] = {.lex_state = 83}, [169] = {.lex_state = 83}, [170] = {.lex_state = 29}, - [171] = {.lex_state = 29}, - [172] = {.lex_state = 83}, - [173] = {.lex_state = 29}, - [174] = {.lex_state = 83}, + [171] = {.lex_state = 83}, + [172] = {.lex_state = 29}, + [173] = {.lex_state = 83}, + [174] = {.lex_state = 29}, [175] = {.lex_state = 29}, - [176] = {.lex_state = 29}, - [177] = {.lex_state = 83}, + [176] = {.lex_state = 83}, + [177] = {.lex_state = 29}, [178] = {.lex_state = 29}, - [179] = {.lex_state = 29}, - [180] = {.lex_state = 27}, - [181] = {.lex_state = 29}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 29}, + [181] = {.lex_state = 83}, [182] = {.lex_state = 83}, - [183] = {.lex_state = 29}, - [184] = {.lex_state = 29}, - [185] = {.lex_state = 29}, + [183] = {.lex_state = 83}, + [184] = {.lex_state = 83}, + [185] = {.lex_state = 83}, [186] = {.lex_state = 83}, [187] = {.lex_state = 83}, [188] = {.lex_state = 83}, @@ -11452,68 +11410,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [190] = {.lex_state = 83}, [191] = {.lex_state = 29}, [192] = {.lex_state = 83}, - [193] = {.lex_state = 29}, + [193] = {.lex_state = 83}, [194] = {.lex_state = 83}, [195] = {.lex_state = 29}, [196] = {.lex_state = 29}, [197] = {.lex_state = 83}, [198] = {.lex_state = 83}, [199] = {.lex_state = 83}, - [200] = {.lex_state = 29}, + [200] = {.lex_state = 83}, [201] = {.lex_state = 83}, [202] = {.lex_state = 83}, - [203] = {.lex_state = 83}, - [204] = {.lex_state = 83}, + [203] = {.lex_state = 29}, + [204] = {.lex_state = 29}, [205] = {.lex_state = 83}, [206] = {.lex_state = 83}, - [207] = {.lex_state = 83}, - [208] = {.lex_state = 83}, - [209] = {.lex_state = 29}, + [207] = {.lex_state = 29}, + [208] = {.lex_state = 29}, + [209] = {.lex_state = 83}, [210] = {.lex_state = 83}, - [211] = {.lex_state = 29}, + [211] = {.lex_state = 83}, [212] = {.lex_state = 83}, [213] = {.lex_state = 83}, [214] = {.lex_state = 83}, - [215] = {.lex_state = 29}, + [215] = {.lex_state = 83}, [216] = {.lex_state = 29}, [217] = {.lex_state = 83}, - [218] = {.lex_state = 29}, - [219] = {.lex_state = 29}, + [218] = {.lex_state = 83}, + [219] = {.lex_state = 83}, [220] = {.lex_state = 83}, [221] = {.lex_state = 29}, [222] = {.lex_state = 83}, - [223] = {.lex_state = 29}, - [224] = {.lex_state = 29}, + [223] = {.lex_state = 83}, + [224] = {.lex_state = 83}, [225] = {.lex_state = 83}, [226] = {.lex_state = 83}, - [227] = {.lex_state = 83}, + [227] = {.lex_state = 29}, [228] = {.lex_state = 83}, [229] = {.lex_state = 83}, - [230] = {.lex_state = 83}, + [230] = {.lex_state = 29}, [231] = {.lex_state = 83}, [232] = {.lex_state = 83}, - [233] = {.lex_state = 83}, + [233] = {.lex_state = 29}, [234] = {.lex_state = 83}, - [235] = {.lex_state = 29}, + [235] = {.lex_state = 83}, [236] = {.lex_state = 83}, - [237] = {.lex_state = 83}, - [238] = {.lex_state = 83}, - [239] = {.lex_state = 29}, + [237] = {.lex_state = 29}, + [238] = {.lex_state = 29}, + [239] = {.lex_state = 83}, [240] = {.lex_state = 83}, [241] = {.lex_state = 83}, [242] = {.lex_state = 83}, [243] = {.lex_state = 83}, [244] = {.lex_state = 83}, - [245] = {.lex_state = 29}, + [245] = {.lex_state = 83}, [246] = {.lex_state = 83}, - [247] = {.lex_state = 29}, - [248] = {.lex_state = 29}, + [247] = {.lex_state = 83}, + [248] = {.lex_state = 83}, [249] = {.lex_state = 83}, [250] = {.lex_state = 83}, [251] = {.lex_state = 83}, [252] = {.lex_state = 83}, [253] = {.lex_state = 83}, - [254] = {.lex_state = 29}, + [254] = {.lex_state = 83}, [255] = {.lex_state = 83}, [256] = {.lex_state = 83}, [257] = {.lex_state = 83}, @@ -11532,34 +11490,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [270] = {.lex_state = 83}, [271] = {.lex_state = 83}, [272] = {.lex_state = 83}, - [273] = {.lex_state = 29}, + [273] = {.lex_state = 83}, [274] = {.lex_state = 83}, [275] = {.lex_state = 83}, [276] = {.lex_state = 83}, [277] = {.lex_state = 83}, [278] = {.lex_state = 83}, [279] = {.lex_state = 83}, - [280] = {.lex_state = 29}, + [280] = {.lex_state = 83}, [281] = {.lex_state = 83}, [282] = {.lex_state = 83}, - [283] = {.lex_state = 83}, - [284] = {.lex_state = 29}, + [283] = {.lex_state = 29}, + [284] = {.lex_state = 83}, [285] = {.lex_state = 83}, [286] = {.lex_state = 83}, - [287] = {.lex_state = 29}, - [288] = {.lex_state = 83}, + [287] = {.lex_state = 83}, + [288] = {.lex_state = 29}, [289] = {.lex_state = 83}, [290] = {.lex_state = 83}, [291] = {.lex_state = 83}, - [292] = {.lex_state = 83}, + [292] = {.lex_state = 29}, [293] = {.lex_state = 83}, [294] = {.lex_state = 83}, [295] = {.lex_state = 83}, - [296] = {.lex_state = 83}, + [296] = {.lex_state = 29}, [297] = {.lex_state = 83}, [298] = {.lex_state = 83}, [299] = {.lex_state = 83}, - [300] = {.lex_state = 83}, + [300] = {.lex_state = 29}, [301] = {.lex_state = 83}, [302] = {.lex_state = 83}, [303] = {.lex_state = 83}, @@ -11567,35 +11525,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [305] = {.lex_state = 83}, [306] = {.lex_state = 83}, [307] = {.lex_state = 83}, - [308] = {.lex_state = 29}, + [308] = {.lex_state = 83}, [309] = {.lex_state = 83}, - [310] = {.lex_state = 83}, + [310] = {.lex_state = 29}, [311] = {.lex_state = 83}, [312] = {.lex_state = 83}, - [313] = {.lex_state = 83}, + [313] = {.lex_state = 29}, [314] = {.lex_state = 83}, [315] = {.lex_state = 83}, [316] = {.lex_state = 83}, [317] = {.lex_state = 83}, [318] = {.lex_state = 83}, - [319] = {.lex_state = 29}, + [319] = {.lex_state = 83}, [320] = {.lex_state = 83}, [321] = {.lex_state = 83}, - [322] = {.lex_state = 29}, - [323] = {.lex_state = 29}, + [322] = {.lex_state = 83}, + [323] = {.lex_state = 83}, [324] = {.lex_state = 83}, [325] = {.lex_state = 83}, [326] = {.lex_state = 83}, [327] = {.lex_state = 83}, - [328] = {.lex_state = 29}, - [329] = {.lex_state = 29}, - [330] = {.lex_state = 83}, + [328] = {.lex_state = 83}, + [329] = {.lex_state = 83}, + [330] = {.lex_state = 29}, [331] = {.lex_state = 29}, [332] = {.lex_state = 83}, [333] = {.lex_state = 83}, [334] = {.lex_state = 83}, [335] = {.lex_state = 83}, - [336] = {.lex_state = 83}, + [336] = {.lex_state = 29}, [337] = {.lex_state = 83}, [338] = {.lex_state = 83}, [339] = {.lex_state = 83}, @@ -11605,40 +11563,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [343] = {.lex_state = 83}, [344] = {.lex_state = 83}, [345] = {.lex_state = 83}, - [346] = {.lex_state = 83}, + [346] = {.lex_state = 29}, [347] = {.lex_state = 83}, [348] = {.lex_state = 83}, [349] = {.lex_state = 83}, [350] = {.lex_state = 83}, [351] = {.lex_state = 83}, [352] = {.lex_state = 83}, - [353] = {.lex_state = 83}, - [354] = {.lex_state = 83}, + [353] = {.lex_state = 29}, + [354] = {.lex_state = 29}, [355] = {.lex_state = 83}, - [356] = {.lex_state = 83}, - [357] = {.lex_state = 83}, - [358] = {.lex_state = 83}, - [359] = {.lex_state = 29}, + [356] = {.lex_state = 29}, + [357] = {.lex_state = 29}, + [358] = {.lex_state = 29}, + [359] = {.lex_state = 83}, [360] = {.lex_state = 29}, [361] = {.lex_state = 29}, - [362] = {.lex_state = 83}, + [362] = {.lex_state = 29}, [363] = {.lex_state = 83}, - [364] = {.lex_state = 83}, - [365] = {.lex_state = 83}, + [364] = {.lex_state = 29}, + [365] = {.lex_state = 29}, [366] = {.lex_state = 29}, - [367] = {.lex_state = 83}, - [368] = {.lex_state = 83}, - [369] = {.lex_state = 83}, + [367] = {.lex_state = 29}, + [368] = {.lex_state = 29}, + [369] = {.lex_state = 29}, [370] = {.lex_state = 83}, [371] = {.lex_state = 83}, - [372] = {.lex_state = 83}, + [372] = {.lex_state = 29}, [373] = {.lex_state = 83}, [374] = {.lex_state = 83}, [375] = {.lex_state = 83}, [376] = {.lex_state = 83}, - [377] = {.lex_state = 27}, + [377] = {.lex_state = 83}, [378] = {.lex_state = 83}, - [379] = {.lex_state = 83}, + [379] = {.lex_state = 27}, [380] = {.lex_state = 83}, [381] = {.lex_state = 83}, [382] = {.lex_state = 83}, @@ -11648,7 +11606,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [386] = {.lex_state = 33}, [387] = {.lex_state = 33}, [388] = {.lex_state = 33}, - [389] = {.lex_state = 33}, + [389] = {.lex_state = 83}, [390] = {.lex_state = 33}, [391] = {.lex_state = 33}, [392] = {.lex_state = 33}, @@ -11660,46 +11618,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 33}, [399] = {.lex_state = 33}, [400] = {.lex_state = 33}, - [401] = {.lex_state = 34}, + [401] = {.lex_state = 33}, [402] = {.lex_state = 34}, - [403] = {.lex_state = 34}, - [404] = {.lex_state = 34}, - [405] = {.lex_state = 34}, + [403] = {.lex_state = 83}, + [404] = {.lex_state = 83}, + [405] = {.lex_state = 83}, [406] = {.lex_state = 34}, - [407] = {.lex_state = 34}, - [408] = {.lex_state = 34}, + [407] = {.lex_state = 83}, + [408] = {.lex_state = 83}, [409] = {.lex_state = 34}, - [410] = {.lex_state = 83}, - [411] = {.lex_state = 33}, + [410] = {.lex_state = 34}, + [411] = {.lex_state = 83}, [412] = {.lex_state = 83}, [413] = {.lex_state = 83}, - [414] = {.lex_state = 83}, + [414] = {.lex_state = 34}, [415] = {.lex_state = 83}, [416] = {.lex_state = 83}, - [417] = {.lex_state = 83}, - [418] = {.lex_state = 83}, + [417] = {.lex_state = 34}, + [418] = {.lex_state = 34}, [419] = {.lex_state = 83}, [420] = {.lex_state = 83}, - [421] = {.lex_state = 83}, - [422] = {.lex_state = 83}, + [421] = {.lex_state = 34}, + [422] = {.lex_state = 34}, [423] = {.lex_state = 83}, - [424] = {.lex_state = 83}, + [424] = {.lex_state = 33}, [425] = {.lex_state = 34}, - [426] = {.lex_state = 34}, + [426] = {.lex_state = 32}, [427] = {.lex_state = 34}, [428] = {.lex_state = 32}, - [429] = {.lex_state = 32}, + [429] = {.lex_state = 34}, [430] = {.lex_state = 32}, [431] = {.lex_state = 33}, - [432] = {.lex_state = 33}, + [432] = {.lex_state = 31}, [433] = {.lex_state = 33}, [434] = {.lex_state = 31}, - [435] = {.lex_state = 31}, - [436] = {.lex_state = 33}, + [435] = {.lex_state = 33}, + [436] = {.lex_state = 31}, [437] = {.lex_state = 33}, - [438] = {.lex_state = 31}, - [439] = {.lex_state = 31}, - [440] = {.lex_state = 31}, + [438] = {.lex_state = 33}, + [439] = {.lex_state = 83}, + [440] = {.lex_state = 83}, [441] = {.lex_state = 83}, [442] = {.lex_state = 83}, [443] = {.lex_state = 83}, @@ -11748,11 +11706,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 83}, [487] = {.lex_state = 83}, [488] = {.lex_state = 83}, - [489] = {.lex_state = 83}, + [489] = {.lex_state = 31}, [490] = {.lex_state = 83}, [491] = {.lex_state = 83}, [492] = {.lex_state = 83}, - [493] = {.lex_state = 83}, + [493] = {.lex_state = 31}, [494] = {.lex_state = 83}, [495] = {.lex_state = 83}, [496] = {.lex_state = 83}, @@ -11787,7 +11745,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 83}, [526] = {.lex_state = 83}, [527] = {.lex_state = 83}, - [528] = {.lex_state = 34}, + [528] = {.lex_state = 83}, [529] = {.lex_state = 83}, [530] = {.lex_state = 83}, [531] = {.lex_state = 83}, @@ -11841,14 +11799,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [579] = {.lex_state = 83}, [580] = {.lex_state = 83}, [581] = {.lex_state = 83}, - [582] = {.lex_state = 83}, + [582] = {.lex_state = 34}, [583] = {.lex_state = 34}, - [584] = {.lex_state = 34}, - [585] = {.lex_state = 32}, - [586] = {.lex_state = 34}, + [584] = {.lex_state = 32}, + [585] = {.lex_state = 34}, + [586] = {.lex_state = 32}, [587] = {.lex_state = 34}, [588] = {.lex_state = 34}, - [589] = {.lex_state = 32}, + [589] = {.lex_state = 34}, [590] = {.lex_state = 34}, [591] = {.lex_state = 34}, [592] = {.lex_state = 34}, @@ -11862,7 +11820,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 34}, [601] = {.lex_state = 34}, [602] = {.lex_state = 34}, - [603] = {.lex_state = 33}, + [603] = {.lex_state = 32}, [604] = {.lex_state = 34}, [605] = {.lex_state = 34}, [606] = {.lex_state = 34}, @@ -11870,7 +11828,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [608] = {.lex_state = 34}, [609] = {.lex_state = 34}, [610] = {.lex_state = 34}, - [611] = {.lex_state = 32}, + [611] = {.lex_state = 34}, [612] = {.lex_state = 34}, [613] = {.lex_state = 34}, [614] = {.lex_state = 34}, @@ -11880,54 +11838,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [618] = {.lex_state = 34}, [619] = {.lex_state = 34}, [620] = {.lex_state = 33}, - [621] = {.lex_state = 34}, + [621] = {.lex_state = 33}, [622] = {.lex_state = 83}, [623] = {.lex_state = 83}, - [624] = {.lex_state = 83}, - [625] = {.lex_state = 34}, + [624] = {.lex_state = 34}, + [625] = {.lex_state = 83}, [626] = {.lex_state = 34}, [627] = {.lex_state = 34}, [628] = {.lex_state = 34}, [629] = {.lex_state = 34}, [630] = {.lex_state = 34}, - [631] = {.lex_state = 34}, + [631] = {.lex_state = 33}, [632] = {.lex_state = 34}, [633] = {.lex_state = 34}, [634] = {.lex_state = 34}, [635] = {.lex_state = 34}, - [636] = {.lex_state = 33}, + [636] = {.lex_state = 34}, [637] = {.lex_state = 34}, [638] = {.lex_state = 34}, [639] = {.lex_state = 34}, - [640] = {.lex_state = 34}, - [641] = {.lex_state = 33}, - [642] = {.lex_state = 33}, + [640] = {.lex_state = 33}, + [641] = {.lex_state = 34}, + [642] = {.lex_state = 34}, [643] = {.lex_state = 34}, - [644] = {.lex_state = 34}, - [645] = {.lex_state = 33}, + [644] = {.lex_state = 33}, + [645] = {.lex_state = 34}, [646] = {.lex_state = 34}, [647] = {.lex_state = 34}, - [648] = {.lex_state = 33}, - [649] = {.lex_state = 34}, + [648] = {.lex_state = 34}, + [649] = {.lex_state = 33}, [650] = {.lex_state = 34}, [651] = {.lex_state = 34}, - [652] = {.lex_state = 34}, + [652] = {.lex_state = 33}, [653] = {.lex_state = 34}, - [654] = {.lex_state = 34}, - [655] = {.lex_state = 33}, + [654] = {.lex_state = 33}, + [655] = {.lex_state = 34}, [656] = {.lex_state = 34}, - [657] = {.lex_state = 33}, + [657] = {.lex_state = 34}, [658] = {.lex_state = 83}, - [659] = {.lex_state = 83}, - [660] = {.lex_state = 33}, + [659] = {.lex_state = 33}, + [660] = {.lex_state = 83}, [661] = {.lex_state = 33}, [662] = {.lex_state = 33}, [663] = {.lex_state = 33}, - [664] = {.lex_state = 33}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, + [664] = {.lex_state = 34}, + [665] = {.lex_state = 33}, + [666] = {.lex_state = 33}, [667] = {.lex_state = 33}, - [668] = {.lex_state = 34}, + [668] = {.lex_state = 33}, [669] = {.lex_state = 33}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, @@ -11935,24 +11893,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [673] = {.lex_state = 33}, [674] = {.lex_state = 33}, [675] = {.lex_state = 33}, - [676] = {.lex_state = 33}, - [677] = {.lex_state = 33}, - [678] = {.lex_state = 33}, - [679] = {.lex_state = 33}, - [680] = {.lex_state = 33}, - [681] = {.lex_state = 33}, - [682] = {.lex_state = 34}, + [676] = {.lex_state = 34}, + [677] = {.lex_state = 34}, + [678] = {.lex_state = 34}, + [679] = {.lex_state = 34}, + [680] = {.lex_state = 34}, + [681] = {.lex_state = 34}, + [682] = {.lex_state = 33}, [683] = {.lex_state = 34}, [684] = {.lex_state = 34}, [685] = {.lex_state = 33}, [686] = {.lex_state = 34}, - [687] = {.lex_state = 34}, - [688] = {.lex_state = 33}, + [687] = {.lex_state = 33}, + [688] = {.lex_state = 34}, [689] = {.lex_state = 33}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 34}, + [690] = {.lex_state = 33}, + [691] = {.lex_state = 33}, [692] = {.lex_state = 33}, - [693] = {.lex_state = 34}, + [693] = {.lex_state = 33}, [694] = {.lex_state = 34}, [695] = {.lex_state = 33}, [696] = {.lex_state = 33}, @@ -11964,60 +11922,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [702] = {.lex_state = 33}, [703] = {.lex_state = 33}, [704] = {.lex_state = 33}, - [705] = {.lex_state = 34}, - [706] = {.lex_state = 34}, - [707] = {.lex_state = 31}, - [708] = {.lex_state = 32}, + [705] = {.lex_state = 33}, + [706] = {.lex_state = 32}, + [707] = {.lex_state = 32}, + [708] = {.lex_state = 34}, [709] = {.lex_state = 32}, - [710] = {.lex_state = 34}, + [710] = {.lex_state = 32}, [711] = {.lex_state = 34}, - [712] = {.lex_state = 34}, + [712] = {.lex_state = 32}, [713] = {.lex_state = 34}, - [714] = {.lex_state = 34}, - [715] = {.lex_state = 34}, - [716] = {.lex_state = 32}, + [714] = {.lex_state = 32}, + [715] = {.lex_state = 32}, + [716] = {.lex_state = 34}, [717] = {.lex_state = 34}, - [718] = {.lex_state = 32}, - [719] = {.lex_state = 32}, - [720] = {.lex_state = 32}, - [721] = {.lex_state = 33}, - [722] = {.lex_state = 34}, - [723] = {.lex_state = 32}, + [718] = {.lex_state = 34}, + [719] = {.lex_state = 34}, + [720] = {.lex_state = 34}, + [721] = {.lex_state = 34}, + [722] = {.lex_state = 32}, + [723] = {.lex_state = 33}, [724] = {.lex_state = 32}, - [725] = {.lex_state = 31}, - [726] = {.lex_state = 31}, - [727] = {.lex_state = 33}, - [728] = {.lex_state = 32}, - [729] = {.lex_state = 32}, + [725] = {.lex_state = 32}, + [726] = {.lex_state = 34}, + [727] = {.lex_state = 34}, + [728] = {.lex_state = 34}, + [729] = {.lex_state = 34}, [730] = {.lex_state = 34}, - [731] = {.lex_state = 31}, - [732] = {.lex_state = 34}, + [731] = {.lex_state = 34}, + [732] = {.lex_state = 31}, [733] = {.lex_state = 34}, [734] = {.lex_state = 32}, - [735] = {.lex_state = 32}, - [736] = {.lex_state = 32}, - [737] = {.lex_state = 32}, + [735] = {.lex_state = 34}, + [736] = {.lex_state = 31}, + [737] = {.lex_state = 31}, [738] = {.lex_state = 32}, [739] = {.lex_state = 32}, - [740] = {.lex_state = 34}, + [740] = {.lex_state = 32}, [741] = {.lex_state = 32}, - [742] = {.lex_state = 34}, + [742] = {.lex_state = 32}, [743] = {.lex_state = 34}, - [744] = {.lex_state = 34}, + [744] = {.lex_state = 31}, [745] = {.lex_state = 32}, [746] = {.lex_state = 34}, [747] = {.lex_state = 34}, - [748] = {.lex_state = 34}, - [749] = {.lex_state = 34}, - [750] = {.lex_state = 34}, + [748] = {.lex_state = 32}, + [749] = {.lex_state = 33}, + [750] = {.lex_state = 32}, [751] = {.lex_state = 34}, - [752] = {.lex_state = 32}, - [753] = {.lex_state = 32}, + [752] = {.lex_state = 34}, + [753] = {.lex_state = 34}, [754] = {.lex_state = 34}, [755] = {.lex_state = 34}, - [756] = {.lex_state = 34}, + [756] = {.lex_state = 32}, [757] = {.lex_state = 34}, - [758] = {.lex_state = 33}, + [758] = {.lex_state = 34}, [759] = {.lex_state = 34}, [760] = {.lex_state = 34}, [761] = {.lex_state = 34}, @@ -12063,7 +12021,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 34}, [802] = {.lex_state = 34}, [803] = {.lex_state = 34}, - [804] = {.lex_state = 34}, + [804] = {.lex_state = 33}, [805] = {.lex_state = 34}, [806] = {.lex_state = 34}, [807] = {.lex_state = 34}, @@ -12076,50 +12034,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [814] = {.lex_state = 34}, [815] = {.lex_state = 34}, [816] = {.lex_state = 34}, - [817] = {.lex_state = 33}, + [817] = {.lex_state = 34}, [818] = {.lex_state = 33}, [819] = {.lex_state = 34}, [820] = {.lex_state = 34}, [821] = {.lex_state = 34}, - [822] = {.lex_state = 33}, + [822] = {.lex_state = 34}, [823] = {.lex_state = 34}, [824] = {.lex_state = 34}, [825] = {.lex_state = 34}, [826] = {.lex_state = 34}, [827] = {.lex_state = 34}, - [828] = {.lex_state = 33}, + [828] = {.lex_state = 34}, [829] = {.lex_state = 34}, - [830] = {.lex_state = 33}, - [831] = {.lex_state = 34}, - [832] = {.lex_state = 33}, + [830] = {.lex_state = 34}, + [831] = {.lex_state = 33}, + [832] = {.lex_state = 34}, [833] = {.lex_state = 33}, [834] = {.lex_state = 33}, [835] = {.lex_state = 34}, [836] = {.lex_state = 34}, - [837] = {.lex_state = 34}, + [837] = {.lex_state = 33}, [838] = {.lex_state = 34}, - [839] = {.lex_state = 33}, - [840] = {.lex_state = 34}, + [839] = {.lex_state = 34}, + [840] = {.lex_state = 33}, [841] = {.lex_state = 34}, [842] = {.lex_state = 34}, - [843] = {.lex_state = 34}, + [843] = {.lex_state = 33}, [844] = {.lex_state = 34}, - [845] = {.lex_state = 33}, + [845] = {.lex_state = 34}, [846] = {.lex_state = 34}, [847] = {.lex_state = 34}, [848] = {.lex_state = 34}, [849] = {.lex_state = 33}, [850] = {.lex_state = 34}, - [851] = {.lex_state = 34}, - [852] = {.lex_state = 34}, + [851] = {.lex_state = 33}, + [852] = {.lex_state = 33}, [853] = {.lex_state = 34}, [854] = {.lex_state = 34}, - [855] = {.lex_state = 34}, + [855] = {.lex_state = 33}, [856] = {.lex_state = 34}, - [857] = {.lex_state = 33}, + [857] = {.lex_state = 34}, [858] = {.lex_state = 34}, - [859] = {.lex_state = 34}, - [860] = {.lex_state = 33}, + [859] = {.lex_state = 33}, + [860] = {.lex_state = 34}, [861] = {.lex_state = 33}, [862] = {.lex_state = 33}, [863] = {.lex_state = 33}, @@ -12164,46 +12122,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 33}, [903] = {.lex_state = 33}, [904] = {.lex_state = 33}, - [905] = {.lex_state = 30}, + [905] = {.lex_state = 33}, [906] = {.lex_state = 33}, - [907] = {.lex_state = 19}, + [907] = {.lex_state = 33}, [908] = {.lex_state = 33}, - [909] = {.lex_state = 30}, - [910] = {.lex_state = 33}, + [909] = {.lex_state = 33}, + [910] = {.lex_state = 17}, [911] = {.lex_state = 30}, [912] = {.lex_state = 30}, [913] = {.lex_state = 30}, [914] = {.lex_state = 30}, - [915] = {.lex_state = 30}, - [916] = {.lex_state = 30}, - [917] = {.lex_state = 30}, - [918] = {.lex_state = 30}, - [919] = {.lex_state = 30}, + [915] = {.lex_state = 33}, + [916] = {.lex_state = 33}, + [917] = {.lex_state = 33}, + [918] = {.lex_state = 33}, + [919] = {.lex_state = 33}, [920] = {.lex_state = 33}, [921] = {.lex_state = 33}, [922] = {.lex_state = 33}, [923] = {.lex_state = 30}, - [924] = {.lex_state = 30}, - [925] = {.lex_state = 30}, + [924] = {.lex_state = 33}, + [925] = {.lex_state = 33}, [926] = {.lex_state = 30}, - [927] = {.lex_state = 30}, + [927] = {.lex_state = 33}, [928] = {.lex_state = 30}, - [929] = {.lex_state = 30}, - [930] = {.lex_state = 33}, - [931] = {.lex_state = 33}, - [932] = {.lex_state = 33}, - [933] = {.lex_state = 33}, - [934] = {.lex_state = 33}, - [935] = {.lex_state = 33}, + [929] = {.lex_state = 33}, + [930] = {.lex_state = 30}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 30}, + [933] = {.lex_state = 30}, + [934] = {.lex_state = 30}, + [935] = {.lex_state = 30}, [936] = {.lex_state = 30}, - [937] = {.lex_state = 33}, - [938] = {.lex_state = 30}, + [937] = {.lex_state = 30}, + [938] = {.lex_state = 33}, [939] = {.lex_state = 30}, [940] = {.lex_state = 30}, - [941] = {.lex_state = 33}, + [941] = {.lex_state = 30}, [942] = {.lex_state = 30}, [943] = {.lex_state = 30}, - [944] = {.lex_state = 30}, + [944] = {.lex_state = 33}, [945] = {.lex_state = 33}, [946] = {.lex_state = 30}, [947] = {.lex_state = 30}, @@ -12213,66 +12171,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [951] = {.lex_state = 30}, [952] = {.lex_state = 30}, [953] = {.lex_state = 30}, - [954] = {.lex_state = 33}, + [954] = {.lex_state = 30}, [955] = {.lex_state = 30}, [956] = {.lex_state = 30}, - [957] = {.lex_state = 33}, + [957] = {.lex_state = 30}, [958] = {.lex_state = 33}, [959] = {.lex_state = 33}, - [960] = {.lex_state = 33}, + [960] = {.lex_state = 30}, [961] = {.lex_state = 33}, - [962] = {.lex_state = 30}, - [963] = {.lex_state = 30}, + [962] = {.lex_state = 33}, + [963] = {.lex_state = 33}, [964] = {.lex_state = 33}, [965] = {.lex_state = 33}, - [966] = {.lex_state = 19}, + [966] = {.lex_state = 33}, [967] = {.lex_state = 33}, - [968] = {.lex_state = 19}, - [969] = {.lex_state = 33}, - [970] = {.lex_state = 19}, - [971] = {.lex_state = 19}, - [972] = {.lex_state = 19}, + [968] = {.lex_state = 30}, + [969] = {.lex_state = 30}, + [970] = {.lex_state = 30}, + [971] = {.lex_state = 30}, + [972] = {.lex_state = 33}, [973] = {.lex_state = 33}, [974] = {.lex_state = 33}, - [975] = {.lex_state = 19}, - [976] = {.lex_state = 19}, - [977] = {.lex_state = 19}, - [978] = {.lex_state = 19}, - [979] = {.lex_state = 19}, - [980] = {.lex_state = 19}, - [981] = {.lex_state = 19}, - [982] = {.lex_state = 19}, - [983] = {.lex_state = 19}, + [975] = {.lex_state = 17}, + [976] = {.lex_state = 33}, + [977] = {.lex_state = 17}, + [978] = {.lex_state = 17}, + [979] = {.lex_state = 17}, + [980] = {.lex_state = 17}, + [981] = {.lex_state = 17}, + [982] = {.lex_state = 33}, + [983] = {.lex_state = 33}, [984] = {.lex_state = 33}, - [985] = {.lex_state = 19}, - [986] = {.lex_state = 19}, - [987] = {.lex_state = 19}, - [988] = {.lex_state = 19}, - [989] = {.lex_state = 33}, - [990] = {.lex_state = 19}, - [991] = {.lex_state = 19}, - [992] = {.lex_state = 19}, - [993] = {.lex_state = 19}, - [994] = {.lex_state = 33}, - [995] = {.lex_state = 33}, + [985] = {.lex_state = 33}, + [986] = {.lex_state = 33}, + [987] = {.lex_state = 33}, + [988] = {.lex_state = 17}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 17}, + [991] = {.lex_state = 17}, + [992] = {.lex_state = 17}, + [993] = {.lex_state = 17}, + [994] = {.lex_state = 17}, + [995] = {.lex_state = 17}, [996] = {.lex_state = 33}, - [997] = {.lex_state = 19}, - [998] = {.lex_state = 33}, - [999] = {.lex_state = 19}, - [1000] = {.lex_state = 33}, - [1001] = {.lex_state = 33}, - [1002] = {.lex_state = 33}, - [1003] = {.lex_state = 19}, - [1004] = {.lex_state = 19}, - [1005] = {.lex_state = 19}, - [1006] = {.lex_state = 33}, - [1007] = {.lex_state = 19}, + [997] = {.lex_state = 17}, + [998] = {.lex_state = 17}, + [999] = {.lex_state = 17}, + [1000] = {.lex_state = 17}, + [1001] = {.lex_state = 17}, + [1002] = {.lex_state = 17}, + [1003] = {.lex_state = 33}, + [1004] = {.lex_state = 17}, + [1005] = {.lex_state = 17}, + [1006] = {.lex_state = 17}, + [1007] = {.lex_state = 17}, [1008] = {.lex_state = 33}, - [1009] = {.lex_state = 33}, + [1009] = {.lex_state = 17}, [1010] = {.lex_state = 33}, - [1011] = {.lex_state = 33}, - [1012] = {.lex_state = 33}, - [1013] = {.lex_state = 33}, + [1011] = {.lex_state = 17}, + [1012] = {.lex_state = 17}, + [1013] = {.lex_state = 17}, [1014] = {.lex_state = 33}, [1015] = {.lex_state = 33}, [1016] = {.lex_state = 33}, @@ -12280,74 +12238,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1018] = {.lex_state = 33}, [1019] = {.lex_state = 33}, [1020] = {.lex_state = 33}, - [1021] = {.lex_state = 33}, + [1021] = {.lex_state = 83}, [1022] = {.lex_state = 33}, - [1023] = {.lex_state = 83}, - [1024] = {.lex_state = 83}, + [1023] = {.lex_state = 33}, + [1024] = {.lex_state = 33}, [1025] = {.lex_state = 83}, [1026] = {.lex_state = 33}, [1027] = {.lex_state = 33}, - [1028] = {.lex_state = 33}, + [1028] = {.lex_state = 83}, [1029] = {.lex_state = 33}, - [1030] = {.lex_state = 83}, - [1031] = {.lex_state = 83}, - [1032] = {.lex_state = 33}, - [1033] = {.lex_state = 83}, + [1030] = {.lex_state = 33}, + [1031] = {.lex_state = 33}, + [1032] = {.lex_state = 83}, + [1033] = {.lex_state = 33}, [1034] = {.lex_state = 33}, [1035] = {.lex_state = 33}, [1036] = {.lex_state = 33}, [1037] = {.lex_state = 33}, - [1038] = {.lex_state = 33}, + [1038] = {.lex_state = 83}, [1039] = {.lex_state = 33}, [1040] = {.lex_state = 33}, [1041] = {.lex_state = 33}, [1042] = {.lex_state = 33}, [1043] = {.lex_state = 83}, - [1044] = {.lex_state = 33}, - [1045] = {.lex_state = 33}, + [1044] = {.lex_state = 83}, + [1045] = {.lex_state = 83}, [1046] = {.lex_state = 33}, [1047] = {.lex_state = 33}, [1048] = {.lex_state = 83}, - [1049] = {.lex_state = 83}, + [1049] = {.lex_state = 33}, [1050] = {.lex_state = 33}, [1051] = {.lex_state = 33}, [1052] = {.lex_state = 33}, [1053] = {.lex_state = 83}, [1054] = {.lex_state = 33}, - [1055] = {.lex_state = 33}, - [1056] = {.lex_state = 83}, + [1055] = {.lex_state = 83}, + [1056] = {.lex_state = 33}, [1057] = {.lex_state = 33}, [1058] = {.lex_state = 83}, - [1059] = {.lex_state = 83}, + [1059] = {.lex_state = 33}, [1060] = {.lex_state = 33}, - [1061] = {.lex_state = 33}, - [1062] = {.lex_state = 83}, - [1063] = {.lex_state = 83}, + [1061] = {.lex_state = 83}, + [1062] = {.lex_state = 33}, + [1063] = {.lex_state = 33}, [1064] = {.lex_state = 83}, - [1065] = {.lex_state = 33}, + [1065] = {.lex_state = 83}, [1066] = {.lex_state = 83}, [1067] = {.lex_state = 83}, - [1068] = {.lex_state = 83}, + [1068] = {.lex_state = 33}, [1069] = {.lex_state = 83}, [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, [1072] = {.lex_state = 83}, - [1073] = {.lex_state = 35}, - [1074] = {.lex_state = 83}, + [1073] = {.lex_state = 83}, + [1074] = {.lex_state = 35}, [1075] = {.lex_state = 83}, [1076] = {.lex_state = 83}, [1077] = {.lex_state = 83}, - [1078] = {.lex_state = 35}, + [1078] = {.lex_state = 83}, [1079] = {.lex_state = 83}, - [1080] = {.lex_state = 83}, + [1080] = {.lex_state = 35}, [1081] = {.lex_state = 83}, - [1082] = {.lex_state = 83}, - [1083] = {.lex_state = 35}, - [1084] = {.lex_state = 35}, + [1082] = {.lex_state = 35}, + [1083] = {.lex_state = 83}, + [1084] = {.lex_state = 83}, [1085] = {.lex_state = 83}, [1086] = {.lex_state = 83}, [1087] = {.lex_state = 83}, - [1088] = {.lex_state = 83}, + [1088] = {.lex_state = 35}, [1089] = {.lex_state = 83}, [1090] = {.lex_state = 83}, [1091] = {.lex_state = 83}, @@ -12387,7 +12345,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1125] = {.lex_state = 83}, [1126] = {.lex_state = 83}, [1127] = {.lex_state = 83}, - [1128] = {.lex_state = 28}, + [1128] = {.lex_state = 83}, [1129] = {.lex_state = 83}, [1130] = {.lex_state = 83}, [1131] = {.lex_state = 83}, @@ -12395,359 +12353,365 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1133] = {.lex_state = 83}, [1134] = {.lex_state = 83}, [1135] = {.lex_state = 83}, - [1136] = {.lex_state = 83}, + [1136] = {.lex_state = 28}, [1137] = {.lex_state = 83}, [1138] = {.lex_state = 83}, [1139] = {.lex_state = 83}, [1140] = {.lex_state = 83}, [1141] = {.lex_state = 83}, [1142] = {.lex_state = 83}, - [1143] = {.lex_state = 33}, - [1144] = {.lex_state = 83}, + [1143] = {.lex_state = 83}, + [1144] = {.lex_state = 33}, [1145] = {.lex_state = 83}, - [1146] = {.lex_state = 83}, - [1147] = {.lex_state = 33}, + [1146] = {.lex_state = 33}, + [1147] = {.lex_state = 83}, [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 22}, - [1150] = {.lex_state = 22}, - [1151] = {.lex_state = 83}, - [1152] = {.lex_state = 83}, + [1149] = {.lex_state = 83}, + [1150] = {.lex_state = 83}, + [1151] = {.lex_state = 22}, + [1152] = {.lex_state = 22}, [1153] = {.lex_state = 24}, [1154] = {.lex_state = 24}, [1155] = {.lex_state = 22}, - [1156] = {.lex_state = 22}, - [1157] = {.lex_state = 24}, + [1156] = {.lex_state = 83}, + [1157] = {.lex_state = 22}, [1158] = {.lex_state = 24}, - [1159] = {.lex_state = 24}, - [1160] = {.lex_state = 22}, - [1161] = {.lex_state = 28}, - [1162] = {.lex_state = 33}, - [1163] = {.lex_state = 22}, - [1164] = {.lex_state = 24}, - [1165] = {.lex_state = 22}, - [1166] = {.lex_state = 24}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 33}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 19}, - [1171] = {.lex_state = 33}, + [1159] = {.lex_state = 83}, + [1160] = {.lex_state = 24}, + [1161] = {.lex_state = 24}, + [1162] = {.lex_state = 24}, + [1163] = {.lex_state = 28}, + [1164] = {.lex_state = 22}, + [1165] = {.lex_state = 33}, + [1166] = {.lex_state = 22}, + [1167] = {.lex_state = 24}, + [1168] = {.lex_state = 22}, + [1169] = {.lex_state = 83}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 0}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 19}, + [1176] = {.lex_state = 33}, + [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 28}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 33}, - [1182] = {.lex_state = 28}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, + [1184] = {.lex_state = 17}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 28}, - [1188] = {.lex_state = 28}, - [1189] = {.lex_state = 83}, + [1186] = {.lex_state = 28}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 28}, + [1196] = {.lex_state = 28}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, + [1203] = {.lex_state = 28}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, + [1206] = {.lex_state = 33}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 19}, + [1209] = {.lex_state = 17}, + [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 28}, - [1213] = {.lex_state = 28}, - [1214] = {.lex_state = 33}, + [1212] = {.lex_state = 33}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 28}, + [1216] = {.lex_state = 17}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 33}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 19}, + [1218] = {.lex_state = 17}, + [1219] = {.lex_state = 28}, + [1220] = {.lex_state = 33}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 33}, + [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 83}, + [1225] = {.lex_state = 28}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 83}, - [1230] = {.lex_state = 33}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, + [1227] = {.lex_state = 28}, + [1228] = {.lex_state = 33}, + [1229] = {.lex_state = 33}, + [1230] = {.lex_state = 83}, + [1231] = {.lex_state = 23}, + [1232] = {.lex_state = 23}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 26}, - [1236] = {.lex_state = 83}, - [1237] = {.lex_state = 33}, + [1235] = {.lex_state = 83}, + [1236] = {.lex_state = 33}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 83}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 83}, - [1242] = {.lex_state = 83}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 25}, + [1240] = {.lex_state = 23}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 23}, + [1243] = {.lex_state = 33}, + [1244] = {.lex_state = 83}, + [1245] = {.lex_state = 83}, + [1246] = {.lex_state = 28}, [1247] = {.lex_state = 83}, - [1248] = {.lex_state = 26}, - [1249] = {.lex_state = 83}, - [1250] = {.lex_state = 83}, - [1251] = {.lex_state = 25}, - [1252] = {.lex_state = 25}, - [1253] = {.lex_state = 83}, - [1254] = {.lex_state = 25}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 83}, - [1257] = {.lex_state = 25}, - [1258] = {.lex_state = 33}, - [1259] = {.lex_state = 33}, + [1248] = {.lex_state = 83}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 23}, + [1251] = {.lex_state = 26}, + [1252] = {.lex_state = 23}, + [1253] = {.lex_state = 23}, + [1254] = {.lex_state = 33}, + [1255] = {.lex_state = 83}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 28}, + [1258] = {.lex_state = 83}, + [1259] = {.lex_state = 83}, [1260] = {.lex_state = 83}, - [1261] = {.lex_state = 25}, - [1262] = {.lex_state = 0}, + [1261] = {.lex_state = 33}, + [1262] = {.lex_state = 26}, [1263] = {.lex_state = 83}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 26}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 28}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 25}, - [1272] = {.lex_state = 25}, - [1273] = {.lex_state = 83}, - [1274] = {.lex_state = 25}, - [1275] = {.lex_state = 33}, - [1276] = {.lex_state = 25}, - [1277] = {.lex_state = 83}, - [1278] = {.lex_state = 33}, - [1279] = {.lex_state = 33}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 83}, - [1282] = {.lex_state = 28}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 25}, - [1285] = {.lex_state = 33}, - [1286] = {.lex_state = 83}, - [1287] = {.lex_state = 25}, - [1288] = {.lex_state = 28}, - [1289] = {.lex_state = 25}, - [1290] = {.lex_state = 83}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 27}, - [1294] = {.lex_state = 19}, - [1295] = {.lex_state = 27}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 83}, + [1267] = {.lex_state = 23}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 83}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 83}, + [1273] = {.lex_state = 33}, + [1274] = {.lex_state = 33}, + [1275] = {.lex_state = 83}, + [1276] = {.lex_state = 23}, + [1277] = {.lex_state = 23}, + [1278] = {.lex_state = 23}, + [1279] = {.lex_state = 23}, + [1280] = {.lex_state = 83}, + [1281] = {.lex_state = 23}, + [1282] = {.lex_state = 23}, + [1283] = {.lex_state = 33}, + [1284] = {.lex_state = 23}, + [1285] = {.lex_state = 83}, + [1286] = {.lex_state = 23}, + [1287] = {.lex_state = 33}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 83}, + [1290] = {.lex_state = 28}, + [1291] = {.lex_state = 26}, + [1292] = {.lex_state = 23}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 27}, - [1298] = {.lex_state = 27}, - [1299] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 17}, + [1299] = {.lex_state = 27}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 19}, + [1301] = {.lex_state = 33}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, + [1304] = {.lex_state = 27}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, + [1306] = {.lex_state = 27}, [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 33}, - [1309] = {.lex_state = 27}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 19}, - [1314] = {.lex_state = 19}, - [1315] = {.lex_state = 19}, - [1316] = {.lex_state = 19}, - [1317] = {.lex_state = 33}, - [1318] = {.lex_state = 19}, - [1319] = {.lex_state = 19}, - [1320] = {.lex_state = 19}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 19}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 27}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 27}, + [1318] = {.lex_state = 27}, + [1319] = {.lex_state = 17}, + [1320] = {.lex_state = 17}, + [1321] = {.lex_state = 17}, + [1322] = {.lex_state = 17}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 19}, - [1326] = {.lex_state = 19}, - [1327] = {.lex_state = 83}, - [1328] = {.lex_state = 19}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 33}, - [1331] = {.lex_state = 33}, - [1332] = {.lex_state = 27}, + [1324] = {.lex_state = 83}, + [1325] = {.lex_state = 17}, + [1326] = {.lex_state = 17}, + [1327] = {.lex_state = 27}, + [1328] = {.lex_state = 17}, + [1329] = {.lex_state = 27}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 17}, + [1332] = {.lex_state = 17}, [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, + [1334] = {.lex_state = 17}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 27}, + [1336] = {.lex_state = 33}, [1337] = {.lex_state = 33}, - [1338] = {.lex_state = 0}, + [1338] = {.lex_state = 83}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 27}, - [1342] = {.lex_state = 19}, - [1343] = {.lex_state = 27}, + [1341] = {.lex_state = 17}, + [1342] = {.lex_state = 27}, + [1343] = {.lex_state = 33}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 27}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 27}, + [1345] = {.lex_state = 27}, + [1346] = {.lex_state = 17}, + [1347] = {.lex_state = 27}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 33}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 27}, - [1354] = {.lex_state = 27}, - [1355] = {.lex_state = 19}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 33}, - [1358] = {.lex_state = 27}, - [1359] = {.lex_state = 19}, - [1360] = {.lex_state = 33}, - [1361] = {.lex_state = 33}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 33}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 19}, - [1366] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 27}, + [1357] = {.lex_state = 27}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 27}, + [1361] = {.lex_state = 27}, + [1362] = {.lex_state = 27}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 27}, + [1365] = {.lex_state = 17}, + [1366] = {.lex_state = 33}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 19}, - [1370] = {.lex_state = 27}, + [1369] = {.lex_state = 33}, + [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 19}, + [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, + [1374] = {.lex_state = 27}, + [1375] = {.lex_state = 27}, + [1376] = {.lex_state = 27}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 83}, + [1378] = {.lex_state = 27}, [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 33}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 27}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 17}, + [1382] = {.lex_state = 17}, [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 33}, - [1388] = {.lex_state = 0}, + [1387] = {.lex_state = 27}, + [1388] = {.lex_state = 33}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 27}, - [1392] = {.lex_state = 27}, + [1391] = {.lex_state = 17}, + [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 33}, + [1395] = {.lex_state = 0}, [1396] = {.lex_state = 33}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 33}, - [1399] = {.lex_state = 27}, - [1400] = {.lex_state = 27}, - [1401] = {.lex_state = 0}, + [1397] = {.lex_state = 17}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 33}, [1402] = {.lex_state = 33}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 27}, + [1403] = {.lex_state = 27}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, [1406] = {.lex_state = 27}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 19}, - [1409] = {.lex_state = 0}, + [1407] = {.lex_state = 83}, + [1408] = {.lex_state = 33}, + [1409] = {.lex_state = 83}, [1410] = {.lex_state = 33}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, + [1412] = {.lex_state = 17}, [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 27}, - [1416] = {.lex_state = 0}, + [1414] = {.lex_state = 17}, + [1415] = {.lex_state = 83}, + [1416] = {.lex_state = 33}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 19}, - [1421] = {.lex_state = 0}, + [1420] = {.lex_state = 27}, + [1421] = {.lex_state = 33}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 33}, - [1424] = {.lex_state = 33}, - [1425] = {.lex_state = 19}, + [1423] = {.lex_state = 17}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 17}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, [1428] = {.lex_state = 33}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 19}, - [1432] = {.lex_state = 19}, + [1429] = {.lex_state = 33}, + [1430] = {.lex_state = 33}, + [1431] = {.lex_state = 17}, + [1432] = {.lex_state = 27}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 27}, + [1434] = {.lex_state = 33}, [1435] = {.lex_state = 0}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 83}, + [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 27}, - [1442] = {.lex_state = 27}, + [1441] = {.lex_state = 33}, + [1442] = {.lex_state = 0}, [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 33}, - [1445] = {.lex_state = 33}, - [1446] = {.lex_state = 33}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 19}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 27}, + [1448] = {.lex_state = 33}, [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, + [1450] = {.lex_state = 33}, + [1451] = {.lex_state = 33}, + [1452] = {.lex_state = 33}, [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 83}, + [1454] = {.lex_state = 27}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 33}, - [1457] = {.lex_state = 33}, - [1458] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 17}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 83}, - [1461] = {.lex_state = 83}, - [1462] = {.lex_state = 27}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 83}, - [1465] = {.lex_state = 27}, - [1466] = {.lex_state = 27}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 17}, + [1463] = {.lex_state = 33}, + [1464] = {.lex_state = 17}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 33}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 27}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 83}, + [1471] = {.lex_state = 83}, + [1472] = {.lex_state = 33}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 27}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 27}, - [1477] = {.lex_state = 83}, - [1478] = {.lex_state = 33}, - [1479] = {.lex_state = 83}, - [1480] = {.lex_state = 83}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 19}, - [1483] = {.lex_state = 33}, - [1484] = {.lex_state = 83}, - [1485] = {.lex_state = 19}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 33}, + [1476] = {.lex_state = 83}, + [1477] = {.lex_state = 27}, + [1478] = {.lex_state = 83}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 27}, + [1481] = {.lex_state = 27}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 17}, + [1484] = {.lex_state = 33}, + [1485] = {.lex_state = 0}, [1486] = {.lex_state = 83}, - [1487] = {.lex_state = 33}, - [1488] = {.lex_state = 83}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 83}, + [1490] = {.lex_state = 83}, + [1491] = {.lex_state = 27}, + [1492] = {.lex_state = 83}, + [1493] = {.lex_state = 33}, + [1494] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12858,6 +12822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), [anon_sym__Generic] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), @@ -12878,69 +12843,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1451), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1026), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(655), + [sym_translation_unit] = STATE(1466), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1020), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(636), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(860), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(863), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -13001,21 +12967,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [2] = { @@ -13025,26 +12992,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1293), - [sym_preproc_elif] = STATE(1293), + [sym_preproc_else] = STATE(1376), + [sym_preproc_elif] = STATE(1376), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13058,41 +13025,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13100,9 +13068,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13112,7 +13080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13131,35 +13099,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [3] = { @@ -13169,170 +13138,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1472), - [sym_preproc_elif] = STATE(1472), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(141), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1434), - [sym_preproc_elif] = STATE(1434), + [sym_preproc_else] = STATE(1299), + [sym_preproc_elif] = STATE(1299), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13346,41 +13171,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13388,9 +13214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13400,7 +13226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13419,64 +13245,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [5] = { + [4] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1350), - [sym_preproc_elif] = STATE(1350), + [sym_preproc_else] = STATE(1481), + [sym_preproc_elif] = STATE(1481), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13490,41 +13317,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(145), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13532,9 +13360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13544,7 +13372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13563,64 +13391,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [6] = { + [5] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1404), - [sym_preproc_elif] = STATE(1404), + [sym_preproc_else] = STATE(1357), + [sym_preproc_elif] = STATE(1357), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13634,41 +13463,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13676,9 +13506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13688,7 +13518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13707,112 +13537,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [7] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1370), - [sym_preproc_elif] = STATE(1370), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(655), + [6] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1318), + [sym_preproc_elif] = STATE(1318), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(149), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13820,9 +13652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13832,7 +13664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13851,64 +13683,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [8] = { + [7] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1400), - [sym_preproc_elif] = STATE(1400), + [sym_preproc_else] = STATE(1345), + [sym_preproc_elif] = STATE(1345), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13922,41 +13755,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -13964,9 +13798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -13976,7 +13810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -13995,112 +13829,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [9] = { - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_call] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1406), - [sym_preproc_elif] = STATE(1406), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(655), + [8] = { + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1342), + [sym_preproc_elif] = STATE(1342), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_case_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_goto_statement] = STATE(8), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(3), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), [aux_sym_preproc_if_token2] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14108,9 +13944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14120,7 +13956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14139,208 +13975,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [10] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1353), - [sym_preproc_elif] = STATE(1353), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [11] = { + [9] = { [sym_preproc_include] = STATE(10), [sym_preproc_def] = STATE(10), [sym_preproc_function_def] = STATE(10), [sym_preproc_call] = STATE(10), [sym_preproc_if] = STATE(10), [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(1309), - [sym_preproc_elif] = STATE(1309), + [sym_preproc_else] = STATE(1378), + [sym_preproc_elif] = STATE(1378), [sym_function_definition] = STATE(10), [sym_declaration] = STATE(10), [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(10), [sym_labeled_statement] = STATE(10), [sym_expression_statement] = STATE(10), @@ -14354,41 +14047,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(10), [sym_continue_statement] = STATE(10), [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14396,9 +14090,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14408,7 +14102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14427,64 +14121,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [12] = { + [10] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1358), - [sym_preproc_elif] = STATE(1358), + [sym_preproc_else] = STATE(1315), + [sym_preproc_elif] = STATE(1315), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -14498,41 +14193,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14540,9 +14236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14552,7 +14248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14571,112 +14267,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1354), - [sym_preproc_elif] = STATE(1354), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(655), + [11] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1491), + [sym_preproc_elif] = STATE(1491), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14684,9 +14382,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14696,7 +14394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14715,112 +14413,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(1297), - [sym_preproc_elif] = STATE(1297), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(655), + [12] = { + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(1327), + [sym_preproc_elif] = STATE(1327), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14828,9 +14528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14840,7 +14540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -14859,112 +14559,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1462), - [sym_preproc_elif] = STATE(1462), - [sym_function_definition] = STATE(3), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(655), + [13] = { + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(1477), + [sym_preproc_elif] = STATE(1477), + [sym_function_definition] = STATE(11), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -14972,9 +14674,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -14984,7 +14686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15003,112 +14705,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [16] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1336), - [sym_preproc_elif] = STATE(1336), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(655), + [14] = { + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1420), + [sym_preproc_elif] = STATE(1420), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15116,9 +14820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15128,7 +14832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15147,112 +14851,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [17] = { - [sym_preproc_include] = STATE(6), - [sym_preproc_def] = STATE(6), - [sym_preproc_function_def] = STATE(6), - [sym_preproc_call] = STATE(6), - [sym_preproc_if] = STATE(6), - [sym_preproc_ifdef] = STATE(6), - [sym_preproc_else] = STATE(1415), - [sym_preproc_elif] = STATE(1415), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(655), + [15] = { + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1364), + [sym_preproc_elif] = STATE(1364), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_case_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_goto_statement] = STATE(6), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15260,9 +14966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15272,7 +14978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15291,112 +14997,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1295), - [sym_preproc_elif] = STATE(1295), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(655), + [16] = { + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(1375), + [sym_preproc_elif] = STATE(1375), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15404,9 +15112,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15416,7 +15124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15435,64 +15143,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [19] = { + [17] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1298), - [sym_preproc_elif] = STATE(1298), + [sym_preproc_else] = STATE(1374), + [sym_preproc_elif] = STATE(1374), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15506,41 +15215,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(93), - [aux_sym_preproc_include_token1] = ACTIONS(95), - [aux_sym_preproc_def_token1] = ACTIONS(97), - [aux_sym_preproc_if_token1] = ACTIONS(99), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(103), - [aux_sym_preproc_ifdef_token2] = ACTIONS(103), - [aux_sym_preproc_else_token1] = ACTIONS(105), - [aux_sym_preproc_elif_token1] = ACTIONS(107), - [sym_preproc_directive] = ACTIONS(109), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15548,9 +15258,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15560,7 +15270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15579,62 +15289,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [20] = { + [18] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(1362), + [sym_preproc_elif] = STATE(1362), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(861), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(862), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15648,320 +15361,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(175), - [aux_sym_preproc_include_token1] = ACTIONS(178), - [aux_sym_preproc_def_token1] = ACTIONS(181), - [aux_sym_preproc_if_token1] = ACTIONS(184), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(187), - [aux_sym_preproc_elif_token1] = ACTIONS(187), - [sym_preproc_directive] = ACTIONS(192), - [anon_sym_LPAREN2] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(207), - [anon_sym_typedef] = ACTIONS(210), - [anon_sym_extern] = ACTIONS(213), - [anon_sym___attribute__] = ACTIONS(216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(219), - [anon_sym___declspec] = ACTIONS(222), - [anon_sym___cdecl] = ACTIONS(225), - [anon_sym___clrcall] = ACTIONS(225), - [anon_sym___stdcall] = ACTIONS(225), - [anon_sym___fastcall] = ACTIONS(225), - [anon_sym___thiscall] = ACTIONS(225), - [anon_sym___vectorcall] = ACTIONS(225), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_static] = ACTIONS(231), - [anon_sym_auto] = ACTIONS(231), - [anon_sym_register] = ACTIONS(231), - [anon_sym_inline] = ACTIONS(231), - [anon_sym_const] = ACTIONS(234), - [anon_sym_volatile] = ACTIONS(234), - [anon_sym_restrict] = ACTIONS(234), - [anon_sym___restrict__] = ACTIONS(234), - [anon_sym__Atomic] = ACTIONS(234), - [anon_sym__Noreturn] = ACTIONS(234), - [anon_sym_signed] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [sym_primitive_type] = ACTIONS(240), - [anon_sym_enum] = ACTIONS(243), - [anon_sym_struct] = ACTIONS(246), - [anon_sym_union] = ACTIONS(249), - [anon_sym_if] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(261), - [anon_sym_while] = ACTIONS(264), - [anon_sym_do] = ACTIONS(267), - [anon_sym_for] = ACTIONS(270), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(276), - [anon_sym_continue] = ACTIONS(279), - [anon_sym_goto] = ACTIONS(282), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_sizeof] = ACTIONS(288), - [anon_sym__Generic] = ACTIONS(291), - [sym_number_literal] = ACTIONS(294), - [anon_sym_L_SQUOTE] = ACTIONS(297), - [anon_sym_u_SQUOTE] = ACTIONS(297), - [anon_sym_U_SQUOTE] = ACTIONS(297), - [anon_sym_u8_SQUOTE] = ACTIONS(297), - [anon_sym_SQUOTE] = ACTIONS(297), - [anon_sym_L_DQUOTE] = ACTIONS(300), - [anon_sym_u_DQUOTE] = ACTIONS(300), - [anon_sym_U_DQUOTE] = ACTIONS(300), - [anon_sym_u8_DQUOTE] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_null] = ACTIONS(303), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(47), - [anon_sym_unsigned] = ACTIONS(47), - [anon_sym_long] = ACTIONS(47), - [anon_sym_short] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [22] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15969,9 +15404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -15981,8 +15416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16001,108 +15435,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1027), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(655), + [19] = { + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(1347), + [sym_preproc_elif] = STATE(1347), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(352), - [aux_sym_preproc_include_token1] = ACTIONS(354), - [aux_sym_preproc_def_token1] = ACTIONS(356), - [aux_sym_preproc_if_token1] = ACTIONS(358), - [aux_sym_preproc_if_token2] = ACTIONS(360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(362), - [sym_preproc_directive] = ACTIONS(364), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(95), + [aux_sym_preproc_include_token1] = ACTIONS(97), + [aux_sym_preproc_def_token1] = ACTIONS(99), + [aux_sym_preproc_if_token1] = ACTIONS(101), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(105), + [aux_sym_preproc_else_token1] = ACTIONS(107), + [aux_sym_preproc_elif_token1] = ACTIONS(109), + [sym_preproc_directive] = ACTIONS(111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16110,9 +15550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), + [anon_sym_extern] = ACTIONS(117), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16122,7 +15562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16141,247 +15581,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1027), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(655), + [20] = { + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1023), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(652), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(396), - [aux_sym_preproc_include_token1] = ACTIONS(399), - [aux_sym_preproc_def_token1] = ACTIONS(402), - [aux_sym_preproc_if_token1] = ACTIONS(405), - [aux_sym_preproc_if_token2] = ACTIONS(187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(408), - [sym_preproc_directive] = ACTIONS(411), - [anon_sym_LPAREN2] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_typedef] = ACTIONS(417), - [anon_sym_extern] = ACTIONS(420), - [anon_sym___attribute__] = ACTIONS(216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(219), - [anon_sym___declspec] = ACTIONS(222), - [anon_sym___cdecl] = ACTIONS(225), - [anon_sym___clrcall] = ACTIONS(225), - [anon_sym___stdcall] = ACTIONS(225), - [anon_sym___fastcall] = ACTIONS(225), - [anon_sym___thiscall] = ACTIONS(225), - [anon_sym___vectorcall] = ACTIONS(225), - [anon_sym_LBRACE] = ACTIONS(423), - [anon_sym_static] = ACTIONS(231), - [anon_sym_auto] = ACTIONS(231), - [anon_sym_register] = ACTIONS(231), - [anon_sym_inline] = ACTIONS(231), - [anon_sym_const] = ACTIONS(234), - [anon_sym_volatile] = ACTIONS(234), - [anon_sym_restrict] = ACTIONS(234), - [anon_sym___restrict__] = ACTIONS(234), - [anon_sym__Atomic] = ACTIONS(234), - [anon_sym__Noreturn] = ACTIONS(234), - [anon_sym_signed] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [sym_primitive_type] = ACTIONS(240), - [anon_sym_enum] = ACTIONS(243), - [anon_sym_struct] = ACTIONS(246), - [anon_sym_union] = ACTIONS(249), - [anon_sym_if] = ACTIONS(426), - [anon_sym_switch] = ACTIONS(429), - [anon_sym_case] = ACTIONS(432), - [anon_sym_default] = ACTIONS(435), - [anon_sym_while] = ACTIONS(438), - [anon_sym_do] = ACTIONS(441), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(447), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(453), - [anon_sym_goto] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_sizeof] = ACTIONS(288), - [anon_sym__Generic] = ACTIONS(291), - [sym_number_literal] = ACTIONS(294), - [anon_sym_L_SQUOTE] = ACTIONS(297), - [anon_sym_u_SQUOTE] = ACTIONS(297), - [anon_sym_U_SQUOTE] = ACTIONS(297), - [anon_sym_u8_SQUOTE] = ACTIONS(297), - [anon_sym_SQUOTE] = ACTIONS(297), - [anon_sym_L_DQUOTE] = ACTIONS(300), - [anon_sym_u_DQUOTE] = ACTIONS(300), - [anon_sym_U_DQUOTE] = ACTIONS(300), - [anon_sym_u8_DQUOTE] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_null] = ACTIONS(303), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(180), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(186), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(191), + [aux_sym_preproc_else_token1] = ACTIONS(189), + [aux_sym_preproc_elif_token1] = ACTIONS(189), + [sym_preproc_directive] = ACTIONS(194), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_typedef] = ACTIONS(212), + [anon_sym_extern] = ACTIONS(215), + [anon_sym___attribute__] = ACTIONS(218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(221), + [anon_sym___declspec] = ACTIONS(224), + [anon_sym___cdecl] = ACTIONS(227), + [anon_sym___clrcall] = ACTIONS(227), + [anon_sym___stdcall] = ACTIONS(227), + [anon_sym___fastcall] = ACTIONS(227), + [anon_sym___thiscall] = ACTIONS(227), + [anon_sym___vectorcall] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(230), + [anon_sym_static] = ACTIONS(233), + [anon_sym_auto] = ACTIONS(233), + [anon_sym_register] = ACTIONS(233), + [anon_sym_inline] = ACTIONS(233), + [anon_sym_const] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym___restrict__] = ACTIONS(236), + [anon_sym__Atomic] = ACTIONS(236), + [anon_sym__Noreturn] = ACTIONS(236), + [anon_sym_signed] = ACTIONS(239), + [anon_sym_unsigned] = ACTIONS(239), + [anon_sym_long] = ACTIONS(239), + [anon_sym_short] = ACTIONS(239), + [sym_primitive_type] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_union] = ACTIONS(251), + [anon_sym_if] = ACTIONS(254), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(260), + [anon_sym_default] = ACTIONS(263), + [anon_sym_while] = ACTIONS(266), + [anon_sym_do] = ACTIONS(269), + [anon_sym_for] = ACTIONS(272), + [anon_sym_return] = ACTIONS(275), + [anon_sym_break] = ACTIONS(278), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_goto] = ACTIONS(284), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym_offsetof] = ACTIONS(293), + [anon_sym__Generic] = ACTIONS(296), + [sym_number_literal] = ACTIONS(299), + [anon_sym_L_SQUOTE] = ACTIONS(302), + [anon_sym_u_SQUOTE] = ACTIONS(302), + [anon_sym_U_SQUOTE] = ACTIONS(302), + [anon_sym_u8_SQUOTE] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(302), + [anon_sym_L_DQUOTE] = ACTIONS(305), + [anon_sym_u_DQUOTE] = ACTIONS(305), + [anon_sym_U_DQUOTE] = ACTIONS(305), + [anon_sym_u8_DQUOTE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_true] = ACTIONS(308), + [sym_false] = ACTIONS(308), + [sym_null] = ACTIONS(308), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [21] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16389,9 +15835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16401,8 +15847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16421,107 +15867,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(655), + [22] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16529,9 +15977,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16541,8 +15989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16561,107 +16009,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(655), + [23] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16669,9 +16119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16681,8 +16131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(357), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16701,107 +16151,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [28] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [24] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16809,9 +16261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16821,8 +16273,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(359), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16841,107 +16293,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(655), + [25] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16949,9 +16403,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16961,8 +16415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(361), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16981,107 +16435,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [26] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17089,9 +16545,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17101,8 +16557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(363), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17121,38 +16577,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [31] = { + [27] = { [sym_preproc_include] = STATE(25), [sym_preproc_def] = STATE(25), [sym_preproc_function_def] = STATE(25), @@ -17162,21 +16619,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(25), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -17190,38 +16647,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(25), [sym_continue_statement] = STATE(25), [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17229,9 +16687,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17241,8 +16699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(365), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17261,107 +16719,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [28] = { + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17369,9 +16829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17381,8 +16841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(367), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17401,38 +16861,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [33] = { + [29] = { [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), [sym_preproc_function_def] = STATE(40), @@ -17442,21 +16903,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(40), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1026), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(636), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(860), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(40), [sym_labeled_statement] = STATE(40), [sym_expression_statement] = STATE(40), @@ -17470,39 +16931,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(40), [sym_continue_statement] = STATE(40), [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(886), [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(475), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17510,9 +16971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17522,7 +16983,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17541,107 +17003,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(655), + [30] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17649,9 +17113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17661,8 +17125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(371), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17681,107 +17145,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [35] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [31] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17789,9 +17255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17801,8 +17267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17821,107 +17287,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(655), + [32] = { + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1020), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(42), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(375), + [sym_identifier] = ACTIONS(377), + [aux_sym_preproc_include_token1] = ACTIONS(380), + [aux_sym_preproc_def_token1] = ACTIONS(383), + [aux_sym_preproc_if_token1] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(389), + [sym_preproc_directive] = ACTIONS(392), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_typedef] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(401), + [anon_sym___attribute__] = ACTIONS(218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(221), + [anon_sym___declspec] = ACTIONS(224), + [anon_sym___cdecl] = ACTIONS(227), + [anon_sym___clrcall] = ACTIONS(227), + [anon_sym___stdcall] = ACTIONS(227), + [anon_sym___fastcall] = ACTIONS(227), + [anon_sym___thiscall] = ACTIONS(227), + [anon_sym___vectorcall] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_static] = ACTIONS(233), + [anon_sym_auto] = ACTIONS(233), + [anon_sym_register] = ACTIONS(233), + [anon_sym_inline] = ACTIONS(233), + [anon_sym_const] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym___restrict__] = ACTIONS(236), + [anon_sym__Atomic] = ACTIONS(236), + [anon_sym__Noreturn] = ACTIONS(236), + [anon_sym_signed] = ACTIONS(239), + [anon_sym_unsigned] = ACTIONS(239), + [anon_sym_long] = ACTIONS(239), + [anon_sym_short] = ACTIONS(239), + [sym_primitive_type] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_union] = ACTIONS(251), + [anon_sym_if] = ACTIONS(407), + [anon_sym_switch] = ACTIONS(410), + [anon_sym_case] = ACTIONS(413), + [anon_sym_default] = ACTIONS(416), + [anon_sym_while] = ACTIONS(419), + [anon_sym_do] = ACTIONS(422), + [anon_sym_for] = ACTIONS(425), + [anon_sym_return] = ACTIONS(428), + [anon_sym_break] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_goto] = ACTIONS(437), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym_offsetof] = ACTIONS(293), + [anon_sym__Generic] = ACTIONS(296), + [sym_number_literal] = ACTIONS(299), + [anon_sym_L_SQUOTE] = ACTIONS(302), + [anon_sym_u_SQUOTE] = ACTIONS(302), + [anon_sym_U_SQUOTE] = ACTIONS(302), + [anon_sym_u8_SQUOTE] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(302), + [anon_sym_L_DQUOTE] = ACTIONS(305), + [anon_sym_u_DQUOTE] = ACTIONS(305), + [anon_sym_U_DQUOTE] = ACTIONS(305), + [anon_sym_u8_DQUOTE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_true] = ACTIONS(308), + [sym_false] = ACTIONS(308), + [sym_null] = ACTIONS(308), + [sym_comment] = ACTIONS(3), + }, + [33] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17929,9 +17539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17941,8 +17551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(440), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17961,107 +17571,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(655), + [34] = { + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1020), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18069,9 +17682,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18081,8 +17694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18101,107 +17713,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [35] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18209,9 +17823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18221,8 +17835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18241,388 +17855,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [36] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1030), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(487), - [aux_sym_preproc_include_token1] = ACTIONS(490), - [aux_sym_preproc_def_token1] = ACTIONS(493), - [aux_sym_preproc_if_token1] = ACTIONS(496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(499), - [sym_preproc_directive] = ACTIONS(502), - [anon_sym_LPAREN2] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(511), - [anon_sym___attribute__] = ACTIONS(216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(219), - [anon_sym___declspec] = ACTIONS(222), - [anon_sym___cdecl] = ACTIONS(225), - [anon_sym___clrcall] = ACTIONS(225), - [anon_sym___stdcall] = ACTIONS(225), - [anon_sym___fastcall] = ACTIONS(225), - [anon_sym___thiscall] = ACTIONS(225), - [anon_sym___vectorcall] = ACTIONS(225), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(517), - [anon_sym_static] = ACTIONS(231), - [anon_sym_auto] = ACTIONS(231), - [anon_sym_register] = ACTIONS(231), - [anon_sym_inline] = ACTIONS(231), - [anon_sym_const] = ACTIONS(234), - [anon_sym_volatile] = ACTIONS(234), - [anon_sym_restrict] = ACTIONS(234), - [anon_sym___restrict__] = ACTIONS(234), - [anon_sym__Atomic] = ACTIONS(234), - [anon_sym__Noreturn] = ACTIONS(234), - [anon_sym_signed] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [sym_primitive_type] = ACTIONS(240), - [anon_sym_enum] = ACTIONS(243), - [anon_sym_struct] = ACTIONS(246), - [anon_sym_union] = ACTIONS(249), - [anon_sym_if] = ACTIONS(519), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_case] = ACTIONS(525), - [anon_sym_default] = ACTIONS(528), - [anon_sym_while] = ACTIONS(531), - [anon_sym_do] = ACTIONS(534), - [anon_sym_for] = ACTIONS(537), - [anon_sym_return] = ACTIONS(540), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_goto] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_sizeof] = ACTIONS(288), - [anon_sym__Generic] = ACTIONS(291), - [sym_number_literal] = ACTIONS(294), - [anon_sym_L_SQUOTE] = ACTIONS(297), - [anon_sym_u_SQUOTE] = ACTIONS(297), - [anon_sym_U_SQUOTE] = ACTIONS(297), - [anon_sym_u8_SQUOTE] = ACTIONS(297), - [anon_sym_SQUOTE] = ACTIONS(297), - [anon_sym_L_DQUOTE] = ACTIONS(300), - [anon_sym_u_DQUOTE] = ACTIONS(300), - [anon_sym_U_DQUOTE] = ACTIONS(300), - [anon_sym_u8_DQUOTE] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_null] = ACTIONS(303), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(861), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(446), + [aux_sym_preproc_include_token1] = ACTIONS(449), + [aux_sym_preproc_def_token1] = ACTIONS(452), + [aux_sym_preproc_if_token1] = ACTIONS(455), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(458), + [sym_preproc_directive] = ACTIONS(461), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(464), + [anon_sym_typedef] = ACTIONS(467), + [anon_sym_extern] = ACTIONS(470), + [anon_sym___attribute__] = ACTIONS(218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(221), + [anon_sym___declspec] = ACTIONS(224), + [anon_sym___cdecl] = ACTIONS(227), + [anon_sym___clrcall] = ACTIONS(227), + [anon_sym___stdcall] = ACTIONS(227), + [anon_sym___fastcall] = ACTIONS(227), + [anon_sym___thiscall] = ACTIONS(227), + [anon_sym___vectorcall] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_static] = ACTIONS(233), + [anon_sym_auto] = ACTIONS(233), + [anon_sym_register] = ACTIONS(233), + [anon_sym_inline] = ACTIONS(233), + [anon_sym_const] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym___restrict__] = ACTIONS(236), + [anon_sym__Atomic] = ACTIONS(236), + [anon_sym__Noreturn] = ACTIONS(236), + [anon_sym_signed] = ACTIONS(239), + [anon_sym_unsigned] = ACTIONS(239), + [anon_sym_long] = ACTIONS(239), + [anon_sym_short] = ACTIONS(239), + [sym_primitive_type] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_union] = ACTIONS(251), + [anon_sym_if] = ACTIONS(476), + [anon_sym_switch] = ACTIONS(479), + [anon_sym_case] = ACTIONS(482), + [anon_sym_default] = ACTIONS(485), + [anon_sym_while] = ACTIONS(488), + [anon_sym_do] = ACTIONS(491), + [anon_sym_for] = ACTIONS(494), + [anon_sym_return] = ACTIONS(497), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(503), + [anon_sym_goto] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym_offsetof] = ACTIONS(293), + [anon_sym__Generic] = ACTIONS(296), + [sym_number_literal] = ACTIONS(299), + [anon_sym_L_SQUOTE] = ACTIONS(302), + [anon_sym_u_SQUOTE] = ACTIONS(302), + [anon_sym_U_SQUOTE] = ACTIONS(302), + [anon_sym_u8_SQUOTE] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(302), + [anon_sym_L_DQUOTE] = ACTIONS(305), + [anon_sym_u_DQUOTE] = ACTIONS(305), + [anon_sym_U_DQUOTE] = ACTIONS(305), + [anon_sym_u8_DQUOTE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_true] = ACTIONS(308), + [sym_false] = ACTIONS(308), + [sym_null] = ACTIONS(308), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1026), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(655), + [37] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(636), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(860), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(517), - [sym_identifier] = ACTIONS(552), - [aux_sym_preproc_include_token1] = ACTIONS(555), - [aux_sym_preproc_def_token1] = ACTIONS(558), - [aux_sym_preproc_if_token1] = ACTIONS(561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(564), - [aux_sym_preproc_ifdef_token2] = ACTIONS(564), - [sym_preproc_directive] = ACTIONS(567), - [anon_sym_LPAREN2] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_typedef] = ACTIONS(573), - [anon_sym_extern] = ACTIONS(576), - [anon_sym___attribute__] = ACTIONS(216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(219), - [anon_sym___declspec] = ACTIONS(222), - [anon_sym___cdecl] = ACTIONS(225), - [anon_sym___clrcall] = ACTIONS(225), - [anon_sym___stdcall] = ACTIONS(225), - [anon_sym___fastcall] = ACTIONS(225), - [anon_sym___thiscall] = ACTIONS(225), - [anon_sym___vectorcall] = ACTIONS(225), - [anon_sym_LBRACE] = ACTIONS(579), - [anon_sym_static] = ACTIONS(231), - [anon_sym_auto] = ACTIONS(231), - [anon_sym_register] = ACTIONS(231), - [anon_sym_inline] = ACTIONS(231), - [anon_sym_const] = ACTIONS(234), - [anon_sym_volatile] = ACTIONS(234), - [anon_sym_restrict] = ACTIONS(234), - [anon_sym___restrict__] = ACTIONS(234), - [anon_sym__Atomic] = ACTIONS(234), - [anon_sym__Noreturn] = ACTIONS(234), - [anon_sym_signed] = ACTIONS(237), - [anon_sym_unsigned] = ACTIONS(237), - [anon_sym_long] = ACTIONS(237), - [anon_sym_short] = ACTIONS(237), - [sym_primitive_type] = ACTIONS(240), - [anon_sym_enum] = ACTIONS(243), - [anon_sym_struct] = ACTIONS(246), - [anon_sym_union] = ACTIONS(249), - [anon_sym_if] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(585), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(594), - [anon_sym_do] = ACTIONS(597), - [anon_sym_for] = ACTIONS(600), - [anon_sym_return] = ACTIONS(603), - [anon_sym_break] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(609), - [anon_sym_goto] = ACTIONS(612), - [anon_sym_DASH_DASH] = ACTIONS(285), - [anon_sym_PLUS_PLUS] = ACTIONS(285), - [anon_sym_sizeof] = ACTIONS(288), - [anon_sym__Generic] = ACTIONS(291), - [sym_number_literal] = ACTIONS(294), - [anon_sym_L_SQUOTE] = ACTIONS(297), - [anon_sym_u_SQUOTE] = ACTIONS(297), - [anon_sym_U_SQUOTE] = ACTIONS(297), - [anon_sym_u8_SQUOTE] = ACTIONS(297), - [anon_sym_SQUOTE] = ACTIONS(297), - [anon_sym_L_DQUOTE] = ACTIONS(300), - [anon_sym_u_DQUOTE] = ACTIONS(300), - [anon_sym_U_DQUOTE] = ACTIONS(300), - [anon_sym_u8_DQUOTE] = ACTIONS(300), - [anon_sym_DQUOTE] = ACTIONS(300), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_null] = ACTIONS(303), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(509), + [aux_sym_preproc_include_token1] = ACTIONS(512), + [aux_sym_preproc_def_token1] = ACTIONS(515), + [aux_sym_preproc_if_token1] = ACTIONS(518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(521), + [sym_preproc_directive] = ACTIONS(524), + [anon_sym_LPAREN2] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_AMP] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_typedef] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(533), + [anon_sym___attribute__] = ACTIONS(218), + [anon_sym_LBRACK_LBRACK] = ACTIONS(221), + [anon_sym___declspec] = ACTIONS(224), + [anon_sym___cdecl] = ACTIONS(227), + [anon_sym___clrcall] = ACTIONS(227), + [anon_sym___stdcall] = ACTIONS(227), + [anon_sym___fastcall] = ACTIONS(227), + [anon_sym___thiscall] = ACTIONS(227), + [anon_sym___vectorcall] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_static] = ACTIONS(233), + [anon_sym_auto] = ACTIONS(233), + [anon_sym_register] = ACTIONS(233), + [anon_sym_inline] = ACTIONS(233), + [anon_sym_const] = ACTIONS(236), + [anon_sym_volatile] = ACTIONS(236), + [anon_sym_restrict] = ACTIONS(236), + [anon_sym___restrict__] = ACTIONS(236), + [anon_sym__Atomic] = ACTIONS(236), + [anon_sym__Noreturn] = ACTIONS(236), + [anon_sym_signed] = ACTIONS(239), + [anon_sym_unsigned] = ACTIONS(239), + [anon_sym_long] = ACTIONS(239), + [anon_sym_short] = ACTIONS(239), + [sym_primitive_type] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_union] = ACTIONS(251), + [anon_sym_if] = ACTIONS(539), + [anon_sym_switch] = ACTIONS(542), + [anon_sym_case] = ACTIONS(545), + [anon_sym_default] = ACTIONS(548), + [anon_sym_while] = ACTIONS(551), + [anon_sym_do] = ACTIONS(554), + [anon_sym_for] = ACTIONS(557), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_goto] = ACTIONS(569), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym_offsetof] = ACTIONS(293), + [anon_sym__Generic] = ACTIONS(296), + [sym_number_literal] = ACTIONS(299), + [anon_sym_L_SQUOTE] = ACTIONS(302), + [anon_sym_u_SQUOTE] = ACTIONS(302), + [anon_sym_U_SQUOTE] = ACTIONS(302), + [anon_sym_u8_SQUOTE] = ACTIONS(302), + [anon_sym_SQUOTE] = ACTIONS(302), + [anon_sym_L_DQUOTE] = ACTIONS(305), + [anon_sym_u_DQUOTE] = ACTIONS(305), + [anon_sym_U_DQUOTE] = ACTIONS(305), + [anon_sym_u8_DQUOTE] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_true] = ACTIONS(308), + [sym_false] = ACTIONS(308), + [sym_null] = ACTIONS(308), [sym_comment] = ACTIONS(3), }, - [41] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1027), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(655), + [38] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1030), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(648), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(862), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(352), - [aux_sym_preproc_include_token1] = ACTIONS(354), - [aux_sym_preproc_def_token1] = ACTIONS(356), - [aux_sym_preproc_if_token1] = ACTIONS(358), - [aux_sym_preproc_if_token2] = ACTIONS(615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(362), - [sym_preproc_directive] = ACTIONS(364), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(861), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(572), + [aux_sym_preproc_include_token1] = ACTIONS(574), + [aux_sym_preproc_def_token1] = ACTIONS(576), + [aux_sym_preproc_if_token1] = ACTIONS(578), + [aux_sym_preproc_if_token2] = ACTIONS(580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(582), + [sym_preproc_directive] = ACTIONS(584), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18630,9 +18250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(590), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18642,7 +18262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym_LBRACE] = ACTIONS(592), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18661,107 +18281,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [42] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1019), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(655), + [39] = { + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1030), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(863), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(306), - [aux_sym_preproc_include_token1] = ACTIONS(308), - [aux_sym_preproc_def_token1] = ACTIONS(310), - [aux_sym_preproc_if_token1] = ACTIONS(312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(314), - [sym_preproc_directive] = ACTIONS(316), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(640), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(861), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(572), + [aux_sym_preproc_include_token1] = ACTIONS(574), + [aux_sym_preproc_def_token1] = ACTIONS(576), + [aux_sym_preproc_if_token1] = ACTIONS(578), + [aux_sym_preproc_if_token2] = ACTIONS(616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(582), + [sym_preproc_directive] = ACTIONS(584), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18769,9 +18392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(590), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -18781,8 +18404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(592), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18801,99 +18423,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), + [40] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(619), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [aux_sym_preproc_if_token2] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [aux_sym_preproc_else_token1] = ACTIONS(621), - [aux_sym_preproc_elif_token1] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18901,19 +18533,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(621), - [anon_sym___clrcall] = ACTIONS(621), - [anon_sym___stdcall] = ACTIONS(621), - [anon_sym___fastcall] = ACTIONS(621), - [anon_sym___thiscall] = ACTIONS(621), - [anon_sym___vectorcall] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(618), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18932,232 +18565,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_else] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(621), - [anon_sym_default] = ACTIONS(621), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [44] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(626), - [aux_sym_preproc_def_token1] = ACTIONS(626), - [aux_sym_preproc_if_token1] = ACTIONS(626), - [aux_sym_preproc_if_token2] = ACTIONS(626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(626), - [aux_sym_preproc_else_token1] = ACTIONS(626), - [aux_sym_preproc_elif_token1] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_LPAREN2] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_typedef] = ACTIONS(643), - [anon_sym_extern] = ACTIONS(646), - [anon_sym___attribute__] = ACTIONS(649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(652), - [anon_sym___declspec] = ACTIONS(655), - [anon_sym___cdecl] = ACTIONS(626), - [anon_sym___clrcall] = ACTIONS(626), - [anon_sym___stdcall] = ACTIONS(626), - [anon_sym___fastcall] = ACTIONS(626), - [anon_sym___thiscall] = ACTIONS(626), - [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_static] = ACTIONS(646), - [anon_sym_auto] = ACTIONS(646), - [anon_sym_register] = ACTIONS(646), - [anon_sym_inline] = ACTIONS(646), - [anon_sym_const] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym___restrict__] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [anon_sym__Noreturn] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(664), - [anon_sym_unsigned] = ACTIONS(664), - [anon_sym_long] = ACTIONS(664), - [anon_sym_short] = ACTIONS(664), - [sym_primitive_type] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(673), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(679), - [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(682), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(688), - [anon_sym_for] = ACTIONS(691), - [anon_sym_return] = ACTIONS(694), - [anon_sym_break] = ACTIONS(697), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_goto] = ACTIONS(703), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(709), - [anon_sym__Generic] = ACTIONS(712), - [sym_number_literal] = ACTIONS(715), - [anon_sym_L_SQUOTE] = ACTIONS(718), - [anon_sym_u_SQUOTE] = ACTIONS(718), - [anon_sym_U_SQUOTE] = ACTIONS(718), - [anon_sym_u8_SQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_L_DQUOTE] = ACTIONS(721), - [anon_sym_u_DQUOTE] = ACTIONS(721), - [anon_sym_U_DQUOTE] = ACTIONS(721), - [anon_sym_u8_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), + [41] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(619), - [aux_sym_preproc_include_token1] = ACTIONS(727), - [aux_sym_preproc_def_token1] = ACTIONS(727), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_if_token2] = ACTIONS(727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(727), - [aux_sym_preproc_else_token1] = ACTIONS(727), - [aux_sym_preproc_elif_token1] = ACTIONS(727), - [sym_preproc_directive] = ACTIONS(727), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19165,19 +18675,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(727), - [anon_sym___clrcall] = ACTIONS(727), - [anon_sym___stdcall] = ACTIONS(727), - [anon_sym___fastcall] = ACTIONS(727), - [anon_sym___thiscall] = ACTIONS(727), - [anon_sym___vectorcall] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(620), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19196,100 +18707,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_else] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(727), - [anon_sym_default] = ACTIONS(727), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), + [42] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1031), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(619), - [aux_sym_preproc_include_token1] = ACTIONS(729), - [aux_sym_preproc_def_token1] = ACTIONS(729), - [aux_sym_preproc_if_token1] = ACTIONS(729), - [aux_sym_preproc_if_token2] = ACTIONS(729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(729), - [aux_sym_preproc_else_token1] = ACTIONS(729), - [aux_sym_preproc_elif_token1] = ACTIONS(729), - [sym_preproc_directive] = ACTIONS(729), + [sym_ms_declspec_modifier] = STATE(654), + [sym_ms_call_modifier] = STATE(631), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(864), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(311), + [aux_sym_preproc_include_token1] = ACTIONS(313), + [aux_sym_preproc_def_token1] = ACTIONS(315), + [aux_sym_preproc_if_token1] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(319), + [sym_preproc_directive] = ACTIONS(321), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19297,19 +18817,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(43), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(327), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(729), - [anon_sym___clrcall] = ACTIONS(729), - [anon_sym___stdcall] = ACTIONS(729), - [anon_sym___fastcall] = ACTIONS(729), - [anon_sym___thiscall] = ACTIONS(729), - [anon_sym___vectorcall] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(622), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19328,100 +18849,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_else] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(655), + [43] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(654), [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(619), - [aux_sym_preproc_include_token1] = ACTIONS(731), - [aux_sym_preproc_def_token1] = ACTIONS(731), - [aux_sym_preproc_if_token1] = ACTIONS(731), - [aux_sym_preproc_if_token2] = ACTIONS(731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(731), - [aux_sym_preproc_else_token1] = ACTIONS(731), - [aux_sym_preproc_elif_token1] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(626), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(626), + [aux_sym_preproc_if_token2] = ACTIONS(626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(626), + [aux_sym_preproc_else_token1] = ACTIONS(626), + [aux_sym_preproc_elif_token1] = ACTIONS(626), + [sym_preproc_directive] = ACTIONS(626), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19429,19 +18951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_typedef] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(731), - [anon_sym___clrcall] = ACTIONS(731), - [anon_sym___stdcall] = ACTIONS(731), - [anon_sym___fastcall] = ACTIONS(731), - [anon_sym___thiscall] = ACTIONS(731), - [anon_sym___vectorcall] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym___cdecl] = ACTIONS(626), + [anon_sym___clrcall] = ACTIONS(626), + [anon_sym___stdcall] = ACTIONS(626), + [anon_sym___fastcall] = ACTIONS(626), + [anon_sym___thiscall] = ACTIONS(626), + [anon_sym___vectorcall] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19460,98 +18982,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(119), - [anon_sym_else] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_if] = ACTIONS(121), + [anon_sym_else] = ACTIONS(626), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1028), - [sym_attribute_specifier] = STATE(655), + [44] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1029), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(733), - [aux_sym_preproc_include_token1] = ACTIONS(731), - [aux_sym_preproc_def_token1] = ACTIONS(731), - [aux_sym_preproc_if_token1] = ACTIONS(731), - [aux_sym_preproc_if_token2] = ACTIONS(731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(628), + [aux_sym_preproc_def_token1] = ACTIONS(628), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_if_token2] = ACTIONS(628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(628), + [aux_sym_preproc_else_token1] = ACTIONS(628), + [aux_sym_preproc_elif_token1] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19559,19 +19085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(731), - [anon_sym___clrcall] = ACTIONS(731), - [anon_sym___stdcall] = ACTIONS(731), - [anon_sym___fastcall] = ACTIONS(731), - [anon_sym___thiscall] = ACTIONS(731), - [anon_sym___vectorcall] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym___cdecl] = ACTIONS(628), + [anon_sym___clrcall] = ACTIONS(628), + [anon_sym___stdcall] = ACTIONS(628), + [anon_sym___fastcall] = ACTIONS(628), + [anon_sym___thiscall] = ACTIONS(628), + [anon_sym___vectorcall] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19590,98 +19116,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(121), + [anon_sym_else] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1028), - [sym_attribute_specifier] = STATE(655), + [45] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1029), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(630), + [aux_sym_preproc_include_token1] = ACTIONS(633), + [aux_sym_preproc_def_token1] = ACTIONS(633), + [aux_sym_preproc_if_token1] = ACTIONS(633), + [aux_sym_preproc_if_token2] = ACTIONS(633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [aux_sym_preproc_else_token1] = ACTIONS(633), + [aux_sym_preproc_elif_token1] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(633), + [anon_sym_LPAREN2] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_typedef] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(653), + [anon_sym___attribute__] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(659), + [anon_sym___declspec] = ACTIONS(662), + [anon_sym___cdecl] = ACTIONS(633), + [anon_sym___clrcall] = ACTIONS(633), + [anon_sym___stdcall] = ACTIONS(633), + [anon_sym___fastcall] = ACTIONS(633), + [anon_sym___thiscall] = ACTIONS(633), + [anon_sym___vectorcall] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_static] = ACTIONS(653), + [anon_sym_auto] = ACTIONS(653), + [anon_sym_register] = ACTIONS(653), + [anon_sym_inline] = ACTIONS(653), + [anon_sym_const] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_restrict] = ACTIONS(668), + [anon_sym___restrict__] = ACTIONS(668), + [anon_sym__Atomic] = ACTIONS(668), + [anon_sym__Noreturn] = ACTIONS(668), + [anon_sym_signed] = ACTIONS(671), + [anon_sym_unsigned] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [sym_primitive_type] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_struct] = ACTIONS(680), + [anon_sym_union] = ACTIONS(683), + [anon_sym_if] = ACTIONS(686), + [anon_sym_else] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_case] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(695), + [anon_sym_for] = ACTIONS(698), + [anon_sym_return] = ACTIONS(701), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_goto] = ACTIONS(710), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_sizeof] = ACTIONS(716), + [anon_sym_offsetof] = ACTIONS(719), + [anon_sym__Generic] = ACTIONS(722), + [sym_number_literal] = ACTIONS(725), + [anon_sym_L_SQUOTE] = ACTIONS(728), + [anon_sym_u_SQUOTE] = ACTIONS(728), + [anon_sym_U_SQUOTE] = ACTIONS(728), + [anon_sym_u8_SQUOTE] = ACTIONS(728), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_L_DQUOTE] = ACTIONS(731), + [anon_sym_u_DQUOTE] = ACTIONS(731), + [anon_sym_U_DQUOTE] = ACTIONS(731), + [anon_sym_u8_DQUOTE] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + }, + [46] = { + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1029), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(733), - [aux_sym_preproc_include_token1] = ACTIONS(729), - [aux_sym_preproc_def_token1] = ACTIONS(729), - [aux_sym_preproc_if_token1] = ACTIONS(729), - [aux_sym_preproc_if_token2] = ACTIONS(729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(729), - [sym_preproc_directive] = ACTIONS(729), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_if_token2] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [aux_sym_preproc_else_token1] = ACTIONS(737), + [aux_sym_preproc_elif_token1] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19689,19 +19353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(729), - [anon_sym___clrcall] = ACTIONS(729), - [anon_sym___stdcall] = ACTIONS(729), - [anon_sym___fastcall] = ACTIONS(729), - [anon_sym___thiscall] = ACTIONS(729), - [anon_sym___vectorcall] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19720,98 +19384,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(121), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), + [47] = { + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1029), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(735), - [sym_identifier] = ACTIONS(737), - [aux_sym_preproc_include_token1] = ACTIONS(729), - [aux_sym_preproc_def_token1] = ACTIONS(729), - [aux_sym_preproc_if_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(729), - [sym_preproc_directive] = ACTIONS(729), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_if_token2] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [aux_sym_preproc_else_token1] = ACTIONS(739), + [aux_sym_preproc_elif_token1] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19819,19 +19487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_typedef] = ACTIONS(115), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(729), - [anon_sym___clrcall] = ACTIONS(729), - [anon_sym___stdcall] = ACTIONS(729), - [anon_sym___fastcall] = ACTIONS(729), - [anon_sym___thiscall] = ACTIONS(729), - [anon_sym___vectorcall] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19850,54 +19518,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(121), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [51] = { + [48] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1020), - [sym_attribute_specifier] = STATE(655), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(654), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -19910,168 +19579,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(51), [sym_continue_statement] = STATE(51), [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(739), - [aux_sym_preproc_include_token1] = ACTIONS(626), - [aux_sym_preproc_def_token1] = ACTIONS(626), - [aux_sym_preproc_if_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_LPAREN2] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(745), - [anon_sym_extern] = ACTIONS(646), - [anon_sym___attribute__] = ACTIONS(649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(652), - [anon_sym___declspec] = ACTIONS(655), - [anon_sym___cdecl] = ACTIONS(626), - [anon_sym___clrcall] = ACTIONS(626), - [anon_sym___stdcall] = ACTIONS(626), - [anon_sym___fastcall] = ACTIONS(626), - [anon_sym___thiscall] = ACTIONS(626), - [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_static] = ACTIONS(646), - [anon_sym_auto] = ACTIONS(646), - [anon_sym_register] = ACTIONS(646), - [anon_sym_inline] = ACTIONS(646), - [anon_sym_const] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym___restrict__] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [anon_sym__Noreturn] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(664), - [anon_sym_unsigned] = ACTIONS(664), - [anon_sym_long] = ACTIONS(664), - [anon_sym_short] = ACTIONS(664), - [sym_primitive_type] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(673), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(753), - [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(756), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(762), - [anon_sym_for] = ACTIONS(765), - [anon_sym_return] = ACTIONS(768), - [anon_sym_break] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_goto] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(709), - [anon_sym__Generic] = ACTIONS(712), - [sym_number_literal] = ACTIONS(715), - [anon_sym_L_SQUOTE] = ACTIONS(718), - [anon_sym_u_SQUOTE] = ACTIONS(718), - [anon_sym_U_SQUOTE] = ACTIONS(718), - [anon_sym_u8_SQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_L_DQUOTE] = ACTIONS(721), - [anon_sym_u_DQUOTE] = ACTIONS(721), - [anon_sym_U_DQUOTE] = ACTIONS(721), - [anon_sym_u8_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1028), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(733), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [aux_sym_preproc_if_token2] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(741), + [sym_identifier] = ACTIONS(743), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20079,19 +19619,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(621), - [anon_sym___clrcall] = ACTIONS(621), - [anon_sym___stdcall] = ACTIONS(621), - [anon_sym___fastcall] = ACTIONS(621), - [anon_sym___thiscall] = ACTIONS(621), - [anon_sym___vectorcall] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20110,98 +19650,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(621), - [anon_sym_default] = ACTIONS(621), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1028), - [sym_attribute_specifier] = STATE(655), + [49] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(733), - [aux_sym_preproc_include_token1] = ACTIONS(727), - [aux_sym_preproc_def_token1] = ACTIONS(727), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_if_token2] = ACTIONS(727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(727), - [sym_preproc_directive] = ACTIONS(727), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(60), + [ts_builtin_sym_end] = ACTIONS(745), + [sym_identifier] = ACTIONS(743), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20209,19 +19751,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_typedef] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(727), - [anon_sym___clrcall] = ACTIONS(727), - [anon_sym___stdcall] = ACTIONS(727), - [anon_sym___fastcall] = ACTIONS(727), - [anon_sym___thiscall] = ACTIONS(727), - [anon_sym___vectorcall] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(372), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20240,97 +19782,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(374), - [anon_sym_else] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(727), - [anon_sym_default] = ACTIONS(727), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [54] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1020), - [sym_attribute_specifier] = STATE(655), + [50] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1027), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(729), - [aux_sym_preproc_def_token1] = ACTIONS(729), - [aux_sym_preproc_if_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(729), - [sym_preproc_directive] = ACTIONS(729), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(747), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_if_token2] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20338,20 +19883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(729), - [anon_sym___clrcall] = ACTIONS(729), - [anon_sym___stdcall] = ACTIONS(729), - [anon_sym___fastcall] = ACTIONS(729), - [anon_sym___thiscall] = ACTIONS(729), - [anon_sym___vectorcall] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(592), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20370,98 +19914,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_else] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(594), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), + [51] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(782), - [sym_identifier] = ACTIONS(737), - [aux_sym_preproc_include_token1] = ACTIONS(731), - [aux_sym_preproc_def_token1] = ACTIONS(731), - [aux_sym_preproc_if_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(62), + [ts_builtin_sym_end] = ACTIONS(749), + [sym_identifier] = ACTIONS(743), + [aux_sym_preproc_include_token1] = ACTIONS(626), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(626), + [sym_preproc_directive] = ACTIONS(626), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20475,12 +20021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(731), - [anon_sym___clrcall] = ACTIONS(731), - [anon_sym___stdcall] = ACTIONS(731), - [anon_sym___fastcall] = ACTIONS(731), - [anon_sym___thiscall] = ACTIONS(731), - [anon_sym___vectorcall] = ACTIONS(731), + [anon_sym___cdecl] = ACTIONS(626), + [anon_sym___clrcall] = ACTIONS(626), + [anon_sym___stdcall] = ACTIONS(626), + [anon_sym___fastcall] = ACTIONS(626), + [anon_sym___thiscall] = ACTIONS(626), + [anon_sym___vectorcall] = ACTIONS(626), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -20501,10 +20047,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(731), + [anon_sym_else] = ACTIONS(626), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -20515,82 +20061,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1020), - [sym_attribute_specifier] = STATE(655), + [52] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1027), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(747), + [aux_sym_preproc_include_token1] = ACTIONS(626), + [aux_sym_preproc_def_token1] = ACTIONS(626), + [aux_sym_preproc_if_token1] = ACTIONS(626), + [aux_sym_preproc_if_token2] = ACTIONS(626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(626), + [sym_preproc_directive] = ACTIONS(626), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20598,20 +20147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(621), - [anon_sym___clrcall] = ACTIONS(621), - [anon_sym___stdcall] = ACTIONS(621), - [anon_sym___fastcall] = ACTIONS(621), - [anon_sym___thiscall] = ACTIONS(621), - [anon_sym___vectorcall] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym___cdecl] = ACTIONS(626), + [anon_sym___clrcall] = ACTIONS(626), + [anon_sym___stdcall] = ACTIONS(626), + [anon_sym___fastcall] = ACTIONS(626), + [anon_sym___thiscall] = ACTIONS(626), + [anon_sym___vectorcall] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(592), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20630,227 +20178,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_else] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(621), - [anon_sym_default] = ACTIONS(621), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(594), + [anon_sym_else] = ACTIONS(626), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1028), - [sym_attribute_specifier] = STATE(655), + [53] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1027), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(786), - [aux_sym_preproc_include_token1] = ACTIONS(626), - [aux_sym_preproc_def_token1] = ACTIONS(626), - [aux_sym_preproc_if_token1] = ACTIONS(626), - [aux_sym_preproc_if_token2] = ACTIONS(626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(626), - [sym_preproc_directive] = ACTIONS(626), - [anon_sym_LPAREN2] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_typedef] = ACTIONS(792), - [anon_sym_extern] = ACTIONS(646), - [anon_sym___attribute__] = ACTIONS(649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(652), - [anon_sym___declspec] = ACTIONS(655), - [anon_sym___cdecl] = ACTIONS(626), - [anon_sym___clrcall] = ACTIONS(626), - [anon_sym___stdcall] = ACTIONS(626), - [anon_sym___fastcall] = ACTIONS(626), - [anon_sym___thiscall] = ACTIONS(626), - [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_static] = ACTIONS(646), - [anon_sym_auto] = ACTIONS(646), - [anon_sym_register] = ACTIONS(646), - [anon_sym_inline] = ACTIONS(646), - [anon_sym_const] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym___restrict__] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [anon_sym__Noreturn] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(664), - [anon_sym_unsigned] = ACTIONS(664), - [anon_sym_long] = ACTIONS(664), - [anon_sym_short] = ACTIONS(664), - [sym_primitive_type] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(673), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(798), - [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(801), - [anon_sym_case] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(804), - [anon_sym_do] = ACTIONS(807), - [anon_sym_for] = ACTIONS(810), - [anon_sym_return] = ACTIONS(813), - [anon_sym_break] = ACTIONS(816), - [anon_sym_continue] = ACTIONS(819), - [anon_sym_goto] = ACTIONS(822), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(709), - [anon_sym__Generic] = ACTIONS(712), - [sym_number_literal] = ACTIONS(715), - [anon_sym_L_SQUOTE] = ACTIONS(718), - [anon_sym_u_SQUOTE] = ACTIONS(718), - [anon_sym_U_SQUOTE] = ACTIONS(718), - [anon_sym_u8_SQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_L_DQUOTE] = ACTIONS(721), - [anon_sym_u_DQUOTE] = ACTIONS(721), - [anon_sym_U_DQUOTE] = ACTIONS(721), - [anon_sym_u8_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(747), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_if_token2] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(594), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1020), - [sym_attribute_specifier] = STATE(655), + [54] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1022), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(727), - [aux_sym_preproc_def_token1] = ACTIONS(727), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(727), - [sym_preproc_directive] = ACTIONS(727), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(751), + [aux_sym_preproc_include_token1] = ACTIONS(633), + [aux_sym_preproc_def_token1] = ACTIONS(633), + [aux_sym_preproc_if_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(633), + [anon_sym_LPAREN2] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_typedef] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(653), + [anon_sym___attribute__] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(659), + [anon_sym___declspec] = ACTIONS(662), + [anon_sym___cdecl] = ACTIONS(633), + [anon_sym___clrcall] = ACTIONS(633), + [anon_sym___stdcall] = ACTIONS(633), + [anon_sym___fastcall] = ACTIONS(633), + [anon_sym___thiscall] = ACTIONS(633), + [anon_sym___vectorcall] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_static] = ACTIONS(653), + [anon_sym_auto] = ACTIONS(653), + [anon_sym_register] = ACTIONS(653), + [anon_sym_inline] = ACTIONS(653), + [anon_sym_const] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_restrict] = ACTIONS(668), + [anon_sym___restrict__] = ACTIONS(668), + [anon_sym__Atomic] = ACTIONS(668), + [anon_sym__Noreturn] = ACTIONS(668), + [anon_sym_signed] = ACTIONS(671), + [anon_sym_unsigned] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [sym_primitive_type] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_struct] = ACTIONS(680), + [anon_sym_union] = ACTIONS(683), + [anon_sym_if] = ACTIONS(765), + [anon_sym_else] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_case] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(771), + [anon_sym_do] = ACTIONS(774), + [anon_sym_for] = ACTIONS(777), + [anon_sym_return] = ACTIONS(780), + [anon_sym_break] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_goto] = ACTIONS(789), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_sizeof] = ACTIONS(716), + [anon_sym_offsetof] = ACTIONS(719), + [anon_sym__Generic] = ACTIONS(722), + [sym_number_literal] = ACTIONS(725), + [anon_sym_L_SQUOTE] = ACTIONS(728), + [anon_sym_u_SQUOTE] = ACTIONS(728), + [anon_sym_U_SQUOTE] = ACTIONS(728), + [anon_sym_u8_SQUOTE] = ACTIONS(728), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_L_DQUOTE] = ACTIONS(731), + [anon_sym_u_DQUOTE] = ACTIONS(731), + [anon_sym_U_DQUOTE] = ACTIONS(731), + [anon_sym_u8_DQUOTE] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1022), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_include_token1] = ACTIONS(628), + [aux_sym_preproc_def_token1] = ACTIONS(628), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20858,20 +20542,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(727), - [anon_sym___clrcall] = ACTIONS(727), - [anon_sym___stdcall] = ACTIONS(727), - [anon_sym___fastcall] = ACTIONS(727), - [anon_sym___thiscall] = ACTIONS(727), - [anon_sym___vectorcall] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym___cdecl] = ACTIONS(628), + [anon_sym___clrcall] = ACTIONS(628), + [anon_sym___stdcall] = ACTIONS(628), + [anon_sym___fastcall] = ACTIONS(628), + [anon_sym___thiscall] = ACTIONS(628), + [anon_sym___vectorcall] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(794), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20890,228 +20574,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_else] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(727), - [anon_sym_default] = ACTIONS(727), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), + [56] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1022), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(827), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(792), [aux_sym_preproc_include_token1] = ACTIONS(626), [aux_sym_preproc_def_token1] = ACTIONS(626), [aux_sym_preproc_if_token1] = ACTIONS(626), [aux_sym_preproc_ifdef_token1] = ACTIONS(626), [aux_sym_preproc_ifdef_token2] = ACTIONS(626), [sym_preproc_directive] = ACTIONS(626), - [anon_sym_LPAREN2] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(637), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_typedef] = ACTIONS(833), - [anon_sym_extern] = ACTIONS(646), - [anon_sym___attribute__] = ACTIONS(649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(652), - [anon_sym___declspec] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), [anon_sym___cdecl] = ACTIONS(626), [anon_sym___clrcall] = ACTIONS(626), [anon_sym___stdcall] = ACTIONS(626), [anon_sym___fastcall] = ACTIONS(626), [anon_sym___thiscall] = ACTIONS(626), [anon_sym___vectorcall] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_static] = ACTIONS(646), - [anon_sym_auto] = ACTIONS(646), - [anon_sym_register] = ACTIONS(646), - [anon_sym_inline] = ACTIONS(646), - [anon_sym_const] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_restrict] = ACTIONS(661), - [anon_sym___restrict__] = ACTIONS(661), - [anon_sym__Atomic] = ACTIONS(661), - [anon_sym__Noreturn] = ACTIONS(661), - [anon_sym_signed] = ACTIONS(664), - [anon_sym_unsigned] = ACTIONS(664), - [anon_sym_long] = ACTIONS(664), - [anon_sym_short] = ACTIONS(664), - [sym_primitive_type] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(673), - [anon_sym_union] = ACTIONS(676), - [anon_sym_if] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(333), [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(335), [anon_sym_case] = ACTIONS(626), [anon_sym_default] = ACTIONS(626), - [anon_sym_while] = ACTIONS(845), - [anon_sym_do] = ACTIONS(848), - [anon_sym_for] = ACTIONS(851), - [anon_sym_return] = ACTIONS(854), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_goto] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_sizeof] = ACTIONS(709), - [anon_sym__Generic] = ACTIONS(712), - [sym_number_literal] = ACTIONS(715), - [anon_sym_L_SQUOTE] = ACTIONS(718), - [anon_sym_u_SQUOTE] = ACTIONS(718), - [anon_sym_U_SQUOTE] = ACTIONS(718), - [anon_sym_u8_SQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_L_DQUOTE] = ACTIONS(721), - [anon_sym_u_DQUOTE] = ACTIONS(721), - [anon_sym_U_DQUOTE] = ACTIONS(721), - [anon_sym_u8_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(724), - [sym_false] = ACTIONS(724), - [sym_null] = ACTIONS(724), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), + [57] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1022), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(784), - [sym_identifier] = ACTIONS(737), - [aux_sym_preproc_include_token1] = ACTIONS(621), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(621), - [sym_preproc_directive] = ACTIONS(621), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_include_token1] = ACTIONS(737), + [aux_sym_preproc_def_token1] = ACTIONS(737), + [aux_sym_preproc_if_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(737), + [sym_preproc_directive] = ACTIONS(737), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21119,19 +20806,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(621), - [anon_sym___clrcall] = ACTIONS(621), - [anon_sym___stdcall] = ACTIONS(621), - [anon_sym___fastcall] = ACTIONS(621), - [anon_sym___thiscall] = ACTIONS(621), - [anon_sym___vectorcall] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(737), + [anon_sym___clrcall] = ACTIONS(737), + [anon_sym___stdcall] = ACTIONS(737), + [anon_sym___fastcall] = ACTIONS(737), + [anon_sym___thiscall] = ACTIONS(737), + [anon_sym___vectorcall] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(745), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21150,98 +20838,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(621), - [anon_sym_default] = ACTIONS(621), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), + [58] = { + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1022), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(825), - [sym_identifier] = ACTIONS(737), - [aux_sym_preproc_include_token1] = ACTIONS(727), - [aux_sym_preproc_def_token1] = ACTIONS(727), - [aux_sym_preproc_if_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token1] = ACTIONS(727), - [aux_sym_preproc_ifdef_token2] = ACTIONS(727), - [sym_preproc_directive] = ACTIONS(727), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_include_token1] = ACTIONS(739), + [aux_sym_preproc_def_token1] = ACTIONS(739), + [aux_sym_preproc_if_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token1] = ACTIONS(739), + [aux_sym_preproc_ifdef_token2] = ACTIONS(739), + [sym_preproc_directive] = ACTIONS(739), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21249,19 +20938,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_typedef] = ACTIONS(325), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(727), - [anon_sym___clrcall] = ACTIONS(727), - [anon_sym___stdcall] = ACTIONS(727), - [anon_sym___fastcall] = ACTIONS(727), - [anon_sym___thiscall] = ACTIONS(727), - [anon_sym___vectorcall] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(739), + [anon_sym___clrcall] = ACTIONS(739), + [anon_sym___stdcall] = ACTIONS(739), + [anon_sym___fastcall] = ACTIONS(739), + [anon_sym___thiscall] = ACTIONS(739), + [anon_sym___vectorcall] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21280,97 +20970,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(727), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(727), - [anon_sym_default] = ACTIONS(727), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_if] = ACTIONS(333), + [anon_sym_else] = ACTIONS(739), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(739), + [anon_sym_default] = ACTIONS(739), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1020), - [sym_attribute_specifier] = STATE(655), + [59] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1027), + [sym_attribute_specifier] = STATE(654), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(780), - [aux_sym_preproc_include_token1] = ACTIONS(731), - [aux_sym_preproc_def_token1] = ACTIONS(731), - [aux_sym_preproc_if_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(731), - [aux_sym_preproc_ifdef_token2] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(747), + [aux_sym_preproc_include_token1] = ACTIONS(628), + [aux_sym_preproc_def_token1] = ACTIONS(628), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_if_token2] = ACTIONS(628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_typedef] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(628), + [anon_sym___clrcall] = ACTIONS(628), + [anon_sym___stdcall] = ACTIONS(628), + [anon_sym___fastcall] = ACTIONS(628), + [anon_sym___thiscall] = ACTIONS(628), + [anon_sym___vectorcall] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_volatile] = ACTIONS(45), + [anon_sym_restrict] = ACTIONS(45), + [anon_sym___restrict__] = ACTIONS(45), + [anon_sym__Atomic] = ACTIONS(45), + [anon_sym__Noreturn] = ACTIONS(45), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(594), + [anon_sym_else] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [60] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(62), + [ts_builtin_sym_end] = ACTIONS(794), + [sym_identifier] = ACTIONS(743), + [aux_sym_preproc_include_token1] = ACTIONS(628), + [aux_sym_preproc_def_token1] = ACTIONS(628), + [aux_sym_preproc_if_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(628), + [sym_preproc_directive] = ACTIONS(628), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21378,20 +21203,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(731), - [anon_sym___clrcall] = ACTIONS(731), - [anon_sym___stdcall] = ACTIONS(731), - [anon_sym___fastcall] = ACTIONS(731), - [anon_sym___thiscall] = ACTIONS(731), - [anon_sym___vectorcall] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym___cdecl] = ACTIONS(628), + [anon_sym___clrcall] = ACTIONS(628), + [anon_sym___stdcall] = ACTIONS(628), + [anon_sym___fastcall] = ACTIONS(628), + [anon_sym___thiscall] = ACTIONS(628), + [anon_sym___vectorcall] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21410,75 +21234,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(328), - [anon_sym_else] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1027), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(796), + [aux_sym_preproc_include_token1] = ACTIONS(633), + [aux_sym_preproc_def_token1] = ACTIONS(633), + [aux_sym_preproc_if_token1] = ACTIONS(633), + [aux_sym_preproc_if_token2] = ACTIONS(633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(633), + [anon_sym_LPAREN2] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(799), + [anon_sym_typedef] = ACTIONS(802), + [anon_sym_extern] = ACTIONS(653), + [anon_sym___attribute__] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(659), + [anon_sym___declspec] = ACTIONS(662), + [anon_sym___cdecl] = ACTIONS(633), + [anon_sym___clrcall] = ACTIONS(633), + [anon_sym___stdcall] = ACTIONS(633), + [anon_sym___fastcall] = ACTIONS(633), + [anon_sym___thiscall] = ACTIONS(633), + [anon_sym___vectorcall] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_static] = ACTIONS(653), + [anon_sym_auto] = ACTIONS(653), + [anon_sym_register] = ACTIONS(653), + [anon_sym_inline] = ACTIONS(653), + [anon_sym_const] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_restrict] = ACTIONS(668), + [anon_sym___restrict__] = ACTIONS(668), + [anon_sym__Atomic] = ACTIONS(668), + [anon_sym__Noreturn] = ACTIONS(668), + [anon_sym_signed] = ACTIONS(671), + [anon_sym_unsigned] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [sym_primitive_type] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_struct] = ACTIONS(680), + [anon_sym_union] = ACTIONS(683), + [anon_sym_if] = ACTIONS(808), + [anon_sym_else] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(811), + [anon_sym_case] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(814), + [anon_sym_do] = ACTIONS(817), + [anon_sym_for] = ACTIONS(820), + [anon_sym_return] = ACTIONS(823), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_goto] = ACTIONS(832), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_sizeof] = ACTIONS(716), + [anon_sym_offsetof] = ACTIONS(719), + [anon_sym__Generic] = ACTIONS(722), + [sym_number_literal] = ACTIONS(725), + [anon_sym_L_SQUOTE] = ACTIONS(728), + [anon_sym_u_SQUOTE] = ACTIONS(728), + [anon_sym_U_SQUOTE] = ACTIONS(728), + [anon_sym_u8_SQUOTE] = ACTIONS(728), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_L_DQUOTE] = ACTIONS(731), + [anon_sym_u_DQUOTE] = ACTIONS(731), + [anon_sym_U_DQUOTE] = ACTIONS(731), + [anon_sym_u8_DQUOTE] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [sym_comment] = ACTIONS(3), + }, + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(654), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [aux_sym_case_statement_repeat1] = STATE(62), + [ts_builtin_sym_end] = ACTIONS(763), + [sym_identifier] = ACTIONS(835), + [aux_sym_preproc_include_token1] = ACTIONS(633), + [aux_sym_preproc_def_token1] = ACTIONS(633), + [aux_sym_preproc_if_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [sym_preproc_directive] = ACTIONS(633), + [anon_sym_LPAREN2] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_typedef] = ACTIONS(841), + [anon_sym_extern] = ACTIONS(653), + [anon_sym___attribute__] = ACTIONS(656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(659), + [anon_sym___declspec] = ACTIONS(662), + [anon_sym___cdecl] = ACTIONS(633), + [anon_sym___clrcall] = ACTIONS(633), + [anon_sym___stdcall] = ACTIONS(633), + [anon_sym___fastcall] = ACTIONS(633), + [anon_sym___thiscall] = ACTIONS(633), + [anon_sym___vectorcall] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_static] = ACTIONS(653), + [anon_sym_auto] = ACTIONS(653), + [anon_sym_register] = ACTIONS(653), + [anon_sym_inline] = ACTIONS(653), + [anon_sym_const] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_restrict] = ACTIONS(668), + [anon_sym___restrict__] = ACTIONS(668), + [anon_sym__Atomic] = ACTIONS(668), + [anon_sym__Noreturn] = ACTIONS(668), + [anon_sym_signed] = ACTIONS(671), + [anon_sym_unsigned] = ACTIONS(671), + [anon_sym_long] = ACTIONS(671), + [anon_sym_short] = ACTIONS(671), + [sym_primitive_type] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_struct] = ACTIONS(680), + [anon_sym_union] = ACTIONS(683), + [anon_sym_if] = ACTIONS(847), + [anon_sym_else] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_case] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_while] = ACTIONS(853), + [anon_sym_do] = ACTIONS(856), + [anon_sym_for] = ACTIONS(859), + [anon_sym_return] = ACTIONS(862), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(868), + [anon_sym_goto] = ACTIONS(871), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_sizeof] = ACTIONS(716), + [anon_sym_offsetof] = ACTIONS(719), + [anon_sym__Generic] = ACTIONS(722), + [sym_number_literal] = ACTIONS(725), + [anon_sym_L_SQUOTE] = ACTIONS(728), + [anon_sym_u_SQUOTE] = ACTIONS(728), + [anon_sym_U_SQUOTE] = ACTIONS(728), + [anon_sym_u8_SQUOTE] = ACTIONS(728), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_L_DQUOTE] = ACTIONS(731), + [anon_sym_u_DQUOTE] = ACTIONS(731), + [anon_sym_U_DQUOTE] = ACTIONS(731), + [anon_sym_u8_DQUOTE] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), [sym_comment] = ACTIONS(3), }, [63] = { - [sym_declaration] = STATE(468), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(655), - [sym_ms_declspec_modifier] = STATE(655), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(788), - [sym_comma_expression] = STATE(1481), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(866), + [sym_declaration] = STATE(482), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(654), + [sym_ms_declspec_modifier] = STATE(654), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(810), + [sym_comma_expression] = STATE(1469), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21486,10 +21576,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(876), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(878), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -21512,60 +21602,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(484), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(655), - [sym_ms_declspec_modifier] = STATE(655), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(766), - [sym_comma_expression] = STATE(1463), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(866), + [sym_declaration] = STATE(477), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(654), + [sym_ms_declspec_modifier] = STATE(654), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(797), + [sym_comma_expression] = STATE(1294), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21573,10 +21665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(880), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(878), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -21599,60 +21691,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [65] = { - [sym_declaration] = STATE(454), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(655), - [sym_ms_declspec_modifier] = STATE(655), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(807), - [sym_comma_expression] = STATE(1335), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(866), + [sym_declaration] = STATE(457), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(654), + [sym_ms_declspec_modifier] = STATE(654), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(766), + [sym_comma_expression] = STATE(1487), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21660,10 +21754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(878), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -21686,60 +21780,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [66] = { - [sym_declaration] = STATE(460), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1018), - [sym_attribute_specifier] = STATE(655), - [sym_attribute_declaration] = STATE(655), - [sym_ms_declspec_modifier] = STATE(655), - [sym_storage_class_specifier] = STATE(655), - [sym_type_qualifier] = STATE(655), - [sym__type_specifier] = STATE(700), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(765), - [sym_comma_expression] = STATE(1473), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym__declaration_specifiers_repeat1] = STATE(655), - [aux_sym_sized_type_specifier_repeat1] = STATE(721), - [sym_identifier] = ACTIONS(866), + [sym_declaration] = STATE(447), + [sym__declaration_modifiers] = STATE(654), + [sym__declaration_specifiers] = STATE(1024), + [sym_attribute_specifier] = STATE(654), + [sym_attribute_declaration] = STATE(654), + [sym_ms_declspec_modifier] = STATE(654), + [sym_storage_class_specifier] = STATE(654), + [sym_type_qualifier] = STATE(654), + [sym__type_specifier] = STATE(702), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(796), + [sym_comma_expression] = STATE(1479), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(654), + [aux_sym_sized_type_specifier_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21747,10 +21843,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(884), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(878), [anon_sym___declspec] = ACTIONS(37), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -21773,269 +21869,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [67] = { - [sym__expression] = STATE(605), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(601), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(601), - [sym_call_expression] = STATE(601), - [sym_field_expression] = STATE(601), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(601), - [sym_initializer_list] = STATE(617), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_identifier] = ACTIONS(878), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_LPAREN2] = ACTIONS(882), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_TILDE] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(894), - [anon_sym_PLUS_PLUS] = ACTIONS(894), - [anon_sym_sizeof] = ACTIONS(896), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_DASH_GT] = ACTIONS(880), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [aux_sym_preproc_else_token1] = ACTIONS(898), - [aux_sym_preproc_elif_token1] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), + [sym__expression] = STATE(590), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(602), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(602), + [sym_call_expression] = STATE(602), + [sym_field_expression] = STATE(602), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(602), + [sym_initializer_list] = STATE(589), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_identifier] = ACTIONS(886), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_LPAREN2] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(888), [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym___restrict__] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym__Noreturn] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [anon_sym__Generic] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_COLON] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_sizeof] = ACTIONS(904), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DASH_GT] = ACTIONS(888), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_if_token2] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [aux_sym_preproc_else_token1] = ACTIONS(902), - [aux_sym_preproc_elif_token1] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym___restrict__] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym__Noreturn] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [anon_sym__Generic] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [70] = { + [68] = { [sym_identifier] = ACTIONS(906), [aux_sym_preproc_include_token1] = ACTIONS(906), [aux_sym_preproc_def_token1] = ACTIONS(906), @@ -22099,6 +22036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_PLUS_PLUS] = ACTIONS(908), [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), [anon_sym__Generic] = ACTIONS(906), [sym_number_literal] = ACTIONS(908), [anon_sym_L_SQUOTE] = ACTIONS(908), @@ -22116,7 +22054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [71] = { + [69] = { [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(910), [aux_sym_preproc_def_token1] = ACTIONS(910), @@ -22180,6 +22118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(912), [anon_sym_PLUS_PLUS] = ACTIONS(912), [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), [anon_sym__Generic] = ACTIONS(910), [sym_number_literal] = ACTIONS(912), [anon_sym_L_SQUOTE] = ACTIONS(912), @@ -22197,7 +22136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [72] = { + [70] = { [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -22247,7 +22186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(914), [anon_sym_union] = ACTIONS(914), [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(914), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), @@ -22261,6 +22200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(916), [anon_sym_PLUS_PLUS] = ACTIONS(916), [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), [anon_sym__Generic] = ACTIONS(914), [sym_number_literal] = ACTIONS(916), [anon_sym_L_SQUOTE] = ACTIONS(916), @@ -22278,1789 +22218,1811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, + [71] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [aux_sym_preproc_else_token1] = ACTIONS(920), + [aux_sym_preproc_elif_token1] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [72] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [aux_sym_preproc_else_token1] = ACTIONS(924), + [aux_sym_preproc_elif_token1] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, [73] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [aux_sym_preproc_else_token1] = ACTIONS(928), + [aux_sym_preproc_elif_token1] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), [sym_comment] = ACTIONS(3), }, [74] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [aux_sym_preproc_else_token1] = ACTIONS(922), - [aux_sym_preproc_elif_token1] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym___restrict__] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym__Noreturn] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [anon_sym__Generic] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [aux_sym_preproc_else_token1] = ACTIONS(932), + [aux_sym_preproc_elif_token1] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, [75] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [aux_sym_preproc_else_token1] = ACTIONS(926), - [aux_sym_preproc_elif_token1] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym___restrict__] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym__Noreturn] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [aux_sym_preproc_else_token1] = ACTIONS(936), + [aux_sym_preproc_elif_token1] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, [76] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_if_token2] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [aux_sym_preproc_else_token1] = ACTIONS(930), - [aux_sym_preproc_elif_token1] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym___restrict__] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym__Noreturn] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [aux_sym_preproc_else_token1] = ACTIONS(940), + [aux_sym_preproc_elif_token1] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_if_token2] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [aux_sym_preproc_else_token1] = ACTIONS(934), - [aux_sym_preproc_elif_token1] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym___restrict__] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym__Noreturn] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [anon_sym__Generic] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [aux_sym_preproc_else_token1] = ACTIONS(944), + [aux_sym_preproc_elif_token1] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [aux_sym_preproc_else_token1] = ACTIONS(938), - [aux_sym_preproc_elif_token1] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym___restrict__] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym__Noreturn] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [anon_sym__Generic] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [aux_sym_preproc_else_token1] = ACTIONS(940), + [aux_sym_preproc_elif_token1] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [79] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_if_token2] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [aux_sym_preproc_else_token1] = ACTIONS(942), - [aux_sym_preproc_elif_token1] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym___restrict__] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym__Noreturn] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [anon_sym__Generic] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [aux_sym_preproc_else_token1] = ACTIONS(948), + [aux_sym_preproc_elif_token1] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, [80] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [aux_sym_preproc_else_token1] = ACTIONS(946), - [aux_sym_preproc_elif_token1] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [aux_sym_preproc_else_token1] = ACTIONS(952), + [aux_sym_preproc_elif_token1] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [aux_sym_preproc_else_token1] = ACTIONS(950), - [aux_sym_preproc_elif_token1] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym___restrict__] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym__Noreturn] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym__Generic] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [aux_sym_preproc_else_token1] = ACTIONS(956), + [aux_sym_preproc_elif_token1] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym__Generic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [aux_sym_preproc_else_token1] = ACTIONS(960), + [aux_sym_preproc_elif_token1] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [anon_sym__Generic] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [aux_sym_preproc_else_token1] = ACTIONS(964), + [aux_sym_preproc_elif_token1] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [aux_sym_preproc_else_token1] = ACTIONS(962), - [aux_sym_preproc_elif_token1] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym___restrict__] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym__Noreturn] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym__Generic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [aux_sym_preproc_else_token1] = ACTIONS(968), + [aux_sym_preproc_elif_token1] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [aux_sym_preproc_else_token1] = ACTIONS(946), - [aux_sym_preproc_elif_token1] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [aux_sym_preproc_else_token1] = ACTIONS(972), + [aux_sym_preproc_elif_token1] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_if_token2] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [aux_sym_preproc_else_token1] = ACTIONS(966), - [aux_sym_preproc_elif_token1] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym___restrict__] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym__Noreturn] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [anon_sym__Generic] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [aux_sym_preproc_else_token1] = ACTIONS(976), + [aux_sym_preproc_elif_token1] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [aux_sym_preproc_else_token1] = ACTIONS(970), - [aux_sym_preproc_elif_token1] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym___restrict__] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym__Noreturn] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym__Generic] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [aux_sym_preproc_else_token1] = ACTIONS(980), + [aux_sym_preproc_elif_token1] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [aux_sym_preproc_else_token1] = ACTIONS(974), - [aux_sym_preproc_elif_token1] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym___restrict__] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym__Noreturn] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [anon_sym__Generic] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [aux_sym_preproc_else_token1] = ACTIONS(984), + [aux_sym_preproc_elif_token1] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_if_token2] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [aux_sym_preproc_else_token1] = ACTIONS(978), - [aux_sym_preproc_elif_token1] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym___restrict__] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym__Noreturn] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [anon_sym__Generic] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [aux_sym_preproc_else_token1] = ACTIONS(988), + [aux_sym_preproc_elif_token1] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [aux_sym_preproc_else_token1] = ACTIONS(982), - [aux_sym_preproc_elif_token1] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [aux_sym_preproc_else_token1] = ACTIONS(992), + [aux_sym_preproc_elif_token1] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, [91] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [aux_sym_preproc_else_token1] = ACTIONS(986), - [aux_sym_preproc_elif_token1] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [aux_sym_preproc_else_token1] = ACTIONS(996), + [aux_sym_preproc_elif_token1] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [aux_sym_preproc_else_token1] = ACTIONS(990), - [aux_sym_preproc_elif_token1] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym___restrict__] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym__Noreturn] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [anon_sym__Generic] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [aux_sym_preproc_else_token1] = ACTIONS(1000), + [aux_sym_preproc_elif_token1] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_if_token2] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [aux_sym_preproc_else_token1] = ACTIONS(994), - [aux_sym_preproc_elif_token1] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(996), - [anon_sym___declspec] = ACTIONS(994), - [anon_sym___cdecl] = ACTIONS(994), - [anon_sym___clrcall] = ACTIONS(994), - [anon_sym___stdcall] = ACTIONS(994), - [anon_sym___fastcall] = ACTIONS(994), - [anon_sym___thiscall] = ACTIONS(994), - [anon_sym___vectorcall] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym___restrict__] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym__Noreturn] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [anon_sym__Generic] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [sym_comment] = ACTIONS(3), - }, - [94] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [aux_sym_preproc_else_token1] = ACTIONS(998), - [aux_sym_preproc_elif_token1] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1000), - [anon_sym___declspec] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym___restrict__] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym__Noreturn] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [anon_sym__Generic] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), - [sym_comment] = ACTIONS(3), - }, - [95] = { [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -24124,6 +24086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), [anon_sym__Generic] = ACTIONS(1004), [sym_number_literal] = ACTIONS(1006), [anon_sym_L_SQUOTE] = ACTIONS(1006), @@ -24141,7 +24104,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [96] = { + [94] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [aux_sym_preproc_else_token1] = ACTIONS(906), + [aux_sym_preproc_elif_token1] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [95] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -24205,6 +24250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), [anon_sym__Generic] = ACTIONS(1008), [sym_number_literal] = ACTIONS(1010), [anon_sym_L_SQUOTE] = ACTIONS(1010), @@ -24222,7 +24268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [97] = { + [96] = { [sym_identifier] = ACTIONS(1012), [aux_sym_preproc_include_token1] = ACTIONS(1012), [aux_sym_preproc_def_token1] = ACTIONS(1012), @@ -24286,6 +24332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1014), [anon_sym_PLUS_PLUS] = ACTIONS(1014), [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), [anon_sym__Generic] = ACTIONS(1012), [sym_number_literal] = ACTIONS(1014), [anon_sym_L_SQUOTE] = ACTIONS(1014), @@ -24303,7 +24350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [98] = { + [97] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -24367,6 +24414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_PLUS_PLUS] = ACTIONS(1018), [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), [anon_sym__Generic] = ACTIONS(1016), [sym_number_literal] = ACTIONS(1018), [anon_sym_L_SQUOTE] = ACTIONS(1018), @@ -24384,7 +24432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [99] = { + [98] = { [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), @@ -24448,6 +24496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_PLUS_PLUS] = ACTIONS(1022), [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), [anon_sym__Generic] = ACTIONS(1020), [sym_number_literal] = ACTIONS(1022), [anon_sym_L_SQUOTE] = ACTIONS(1022), @@ -24465,7 +24514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [100] = { + [99] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -24529,6 +24578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1026), [anon_sym_PLUS_PLUS] = ACTIONS(1026), [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), [anon_sym__Generic] = ACTIONS(1024), [sym_number_literal] = ACTIONS(1026), [anon_sym_L_SQUOTE] = ACTIONS(1026), @@ -24546,7 +24596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [101] = { + [100] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), @@ -24610,6 +24660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_PLUS_PLUS] = ACTIONS(1030), [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), [anon_sym__Generic] = ACTIONS(1028), [sym_number_literal] = ACTIONS(1030), [anon_sym_L_SQUOTE] = ACTIONS(1030), @@ -24627,88 +24678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [102] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [aux_sym_preproc_else_token1] = ACTIONS(986), - [aux_sym_preproc_elif_token1] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_comment] = ACTIONS(3), - }, - [103] = { + [101] = { [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), [aux_sym_preproc_def_token1] = ACTIONS(1032), @@ -24772,6 +24742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1034), [anon_sym_PLUS_PLUS] = ACTIONS(1034), [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), [anon_sym__Generic] = ACTIONS(1032), [sym_number_literal] = ACTIONS(1034), [anon_sym_L_SQUOTE] = ACTIONS(1034), @@ -24789,7 +24760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [104] = { + [102] = { [sym_identifier] = ACTIONS(1036), [aux_sym_preproc_include_token1] = ACTIONS(1036), [aux_sym_preproc_def_token1] = ACTIONS(1036), @@ -24839,6 +24810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1036), [anon_sym_union] = ACTIONS(1036), [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), [anon_sym_switch] = ACTIONS(1036), [anon_sym_case] = ACTIONS(1036), [anon_sym_default] = ACTIONS(1036), @@ -24852,6 +24824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1038), [anon_sym_PLUS_PLUS] = ACTIONS(1038), [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), [anon_sym__Generic] = ACTIONS(1036), [sym_number_literal] = ACTIONS(1038), [anon_sym_L_SQUOTE] = ACTIONS(1038), @@ -24869,7 +24842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [105] = { + [103] = { [sym_identifier] = ACTIONS(1040), [aux_sym_preproc_include_token1] = ACTIONS(1040), [aux_sym_preproc_def_token1] = ACTIONS(1040), @@ -24919,6 +24892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1040), [anon_sym_union] = ACTIONS(1040), [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), [anon_sym_switch] = ACTIONS(1040), [anon_sym_case] = ACTIONS(1040), [anon_sym_default] = ACTIONS(1040), @@ -24932,6 +24906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1042), [anon_sym_PLUS_PLUS] = ACTIONS(1042), [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), [anon_sym__Generic] = ACTIONS(1040), [sym_number_literal] = ACTIONS(1042), [anon_sym_L_SQUOTE] = ACTIONS(1042), @@ -24949,7 +24924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [106] = { + [104] = { [sym_identifier] = ACTIONS(1044), [aux_sym_preproc_include_token1] = ACTIONS(1044), [aux_sym_preproc_def_token1] = ACTIONS(1044), @@ -25012,6 +24987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1046), [anon_sym_PLUS_PLUS] = ACTIONS(1046), [anon_sym_sizeof] = ACTIONS(1044), + [anon_sym_offsetof] = ACTIONS(1044), [anon_sym__Generic] = ACTIONS(1044), [sym_number_literal] = ACTIONS(1046), [anon_sym_L_SQUOTE] = ACTIONS(1046), @@ -25029,7 +25005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, - [107] = { + [105] = { [sym_identifier] = ACTIONS(1048), [aux_sym_preproc_include_token1] = ACTIONS(1048), [aux_sym_preproc_def_token1] = ACTIONS(1048), @@ -25092,6 +25068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1050), [anon_sym_PLUS_PLUS] = ACTIONS(1050), [anon_sym_sizeof] = ACTIONS(1048), + [anon_sym_offsetof] = ACTIONS(1048), [anon_sym__Generic] = ACTIONS(1048), [sym_number_literal] = ACTIONS(1050), [anon_sym_L_SQUOTE] = ACTIONS(1050), @@ -25109,7 +25086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, - [108] = { + [106] = { [sym_identifier] = ACTIONS(1052), [aux_sym_preproc_include_token1] = ACTIONS(1052), [aux_sym_preproc_def_token1] = ACTIONS(1052), @@ -25172,6 +25149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1054), [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_offsetof] = ACTIONS(1052), [anon_sym__Generic] = ACTIONS(1052), [sym_number_literal] = ACTIONS(1054), [anon_sym_L_SQUOTE] = ACTIONS(1054), @@ -25189,7 +25167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [109] = { + [107] = { [sym_identifier] = ACTIONS(1056), [aux_sym_preproc_include_token1] = ACTIONS(1056), [aux_sym_preproc_def_token1] = ACTIONS(1056), @@ -25252,6 +25230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1058), [anon_sym_PLUS_PLUS] = ACTIONS(1058), [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), [anon_sym__Generic] = ACTIONS(1056), [sym_number_literal] = ACTIONS(1058), [anon_sym_L_SQUOTE] = ACTIONS(1058), @@ -25269,7 +25248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [110] = { + [108] = { [sym_identifier] = ACTIONS(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), [aux_sym_preproc_def_token1] = ACTIONS(1060), @@ -25332,6 +25311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1062), [anon_sym_PLUS_PLUS] = ACTIONS(1062), [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), [anon_sym__Generic] = ACTIONS(1060), [sym_number_literal] = ACTIONS(1062), [anon_sym_L_SQUOTE] = ACTIONS(1062), @@ -25349,7 +25329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [111] = { + [109] = { [sym_identifier] = ACTIONS(1064), [aux_sym_preproc_include_token1] = ACTIONS(1064), [aux_sym_preproc_def_token1] = ACTIONS(1064), @@ -25412,6 +25392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1066), [anon_sym_PLUS_PLUS] = ACTIONS(1066), [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), [anon_sym__Generic] = ACTIONS(1064), [sym_number_literal] = ACTIONS(1066), [anon_sym_L_SQUOTE] = ACTIONS(1066), @@ -25429,7 +25410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [112] = { + [110] = { [sym_identifier] = ACTIONS(1068), [aux_sym_preproc_include_token1] = ACTIONS(1068), [aux_sym_preproc_def_token1] = ACTIONS(1068), @@ -25492,6 +25473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1070), [anon_sym_PLUS_PLUS] = ACTIONS(1070), [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), [anon_sym__Generic] = ACTIONS(1068), [sym_number_literal] = ACTIONS(1070), [anon_sym_L_SQUOTE] = ACTIONS(1070), @@ -25509,7 +25491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [113] = { + [111] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -25572,6 +25554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1074), [anon_sym_PLUS_PLUS] = ACTIONS(1074), [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), [anon_sym__Generic] = ACTIONS(1072), [sym_number_literal] = ACTIONS(1074), [anon_sym_L_SQUOTE] = ACTIONS(1074), @@ -25589,7 +25572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [114] = { + [112] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -25652,6 +25635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1078), [anon_sym_PLUS_PLUS] = ACTIONS(1078), [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), [anon_sym__Generic] = ACTIONS(1076), [sym_number_literal] = ACTIONS(1078), [anon_sym_L_SQUOTE] = ACTIONS(1078), @@ -25669,7 +25653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [115] = { + [113] = { [sym_identifier] = ACTIONS(1080), [aux_sym_preproc_include_token1] = ACTIONS(1080), [aux_sym_preproc_def_token1] = ACTIONS(1080), @@ -25732,6 +25716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1082), [anon_sym_PLUS_PLUS] = ACTIONS(1082), [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), [anon_sym__Generic] = ACTIONS(1080), [sym_number_literal] = ACTIONS(1082), [anon_sym_L_SQUOTE] = ACTIONS(1082), @@ -25749,7 +25734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [116] = { + [114] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -25812,6 +25797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1086), [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), + [anon_sym_offsetof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), @@ -25829,7 +25815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [117] = { + [115] = { [sym_identifier] = ACTIONS(1088), [aux_sym_preproc_include_token1] = ACTIONS(1088), [aux_sym_preproc_def_token1] = ACTIONS(1088), @@ -25892,6 +25878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1090), [anon_sym_PLUS_PLUS] = ACTIONS(1090), [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), [anon_sym__Generic] = ACTIONS(1088), [sym_number_literal] = ACTIONS(1090), [anon_sym_L_SQUOTE] = ACTIONS(1090), @@ -25909,7 +25896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [118] = { + [116] = { [sym_identifier] = ACTIONS(1092), [aux_sym_preproc_include_token1] = ACTIONS(1092), [aux_sym_preproc_def_token1] = ACTIONS(1092), @@ -25972,6 +25959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1094), [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), [anon_sym__Generic] = ACTIONS(1092), [sym_number_literal] = ACTIONS(1094), [anon_sym_L_SQUOTE] = ACTIONS(1094), @@ -25989,7 +25977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1092), [sym_comment] = ACTIONS(3), }, - [119] = { + [117] = { [sym_identifier] = ACTIONS(1096), [aux_sym_preproc_include_token1] = ACTIONS(1096), [aux_sym_preproc_def_token1] = ACTIONS(1096), @@ -26052,6 +26040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1098), [anon_sym_PLUS_PLUS] = ACTIONS(1098), [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), [anon_sym__Generic] = ACTIONS(1096), [sym_number_literal] = ACTIONS(1098), [anon_sym_L_SQUOTE] = ACTIONS(1098), @@ -26069,7 +26058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [120] = { + [118] = { [sym_identifier] = ACTIONS(1100), [aux_sym_preproc_include_token1] = ACTIONS(1100), [aux_sym_preproc_def_token1] = ACTIONS(1100), @@ -26132,6 +26121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1102), [anon_sym_PLUS_PLUS] = ACTIONS(1102), [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), [anon_sym__Generic] = ACTIONS(1100), [sym_number_literal] = ACTIONS(1102), [anon_sym_L_SQUOTE] = ACTIONS(1102), @@ -26149,7 +26139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [121] = { + [119] = { [sym_identifier] = ACTIONS(1104), [aux_sym_preproc_include_token1] = ACTIONS(1104), [aux_sym_preproc_def_token1] = ACTIONS(1104), @@ -26212,6 +26202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1106), [anon_sym_PLUS_PLUS] = ACTIONS(1106), [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), [anon_sym__Generic] = ACTIONS(1104), [sym_number_literal] = ACTIONS(1106), [anon_sym_L_SQUOTE] = ACTIONS(1106), @@ -26229,7 +26220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [122] = { + [120] = { [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -26292,6 +26283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1110), [anon_sym_PLUS_PLUS] = ACTIONS(1110), [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), [anon_sym__Generic] = ACTIONS(1108), [sym_number_literal] = ACTIONS(1110), [anon_sym_L_SQUOTE] = ACTIONS(1110), @@ -26309,7 +26301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [123] = { + [121] = { [sym_identifier] = ACTIONS(1112), [aux_sym_preproc_include_token1] = ACTIONS(1112), [aux_sym_preproc_def_token1] = ACTIONS(1112), @@ -26372,6 +26364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1114), [anon_sym_PLUS_PLUS] = ACTIONS(1114), [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), [anon_sym__Generic] = ACTIONS(1112), [sym_number_literal] = ACTIONS(1114), [anon_sym_L_SQUOTE] = ACTIONS(1114), @@ -26389,7 +26382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [124] = { + [122] = { [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), [aux_sym_preproc_def_token1] = ACTIONS(1116), @@ -26452,6 +26445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1118), [anon_sym_PLUS_PLUS] = ACTIONS(1118), [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), [anon_sym__Generic] = ACTIONS(1116), [sym_number_literal] = ACTIONS(1118), [anon_sym_L_SQUOTE] = ACTIONS(1118), @@ -26469,955 +26463,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [125] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [126] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), - [sym_comment] = ACTIONS(3), - }, - [127] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym___restrict__] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym__Noreturn] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [anon_sym__Generic] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [128] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_if_token2] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym___restrict__] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym__Noreturn] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [anon_sym__Generic] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - }, - [131] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_if_token2] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym___restrict__] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym__Noreturn] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [anon_sym__Generic] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym__Generic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [123] = { + [sym__expression] = STATE(636), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(602), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(602), + [sym_call_expression] = STATE(602), + [sym_field_expression] = STATE(602), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(602), + [sym_initializer_list] = STATE(589), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_identifier] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_sizeof] = ACTIONS(1130), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DASH_GT] = ACTIONS(888), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [133] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym___restrict__] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym__Noreturn] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym__Generic] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [124] = { + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token2] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [aux_sym_preproc_else_token1] = ACTIONS(1132), + [aux_sym_preproc_elif_token1] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [134] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym___restrict__] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym__Noreturn] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [anon_sym__Generic] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [125] = { + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token2] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [aux_sym_preproc_else_token1] = ACTIONS(1136), + [aux_sym_preproc_elif_token1] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [135] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym___restrict__] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym__Noreturn] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym__Generic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [126] = { + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1140), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [136] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [127] = { + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym___restrict__] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym__Noreturn] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), + [anon_sym__Generic] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [137] = { + [128] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), @@ -27479,6 +26928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1030), [anon_sym_PLUS_PLUS] = ACTIONS(1030), [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), [anon_sym__Generic] = ACTIONS(1028), [sym_number_literal] = ACTIONS(1030), [anon_sym_L_SQUOTE] = ACTIONS(1030), @@ -27496,1350 +26946,1208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [129] = { + [sym_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(148), + [sym_attributed_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_case_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_if_token2] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym___restrict__] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym__Noreturn] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [anon_sym__Generic] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [130] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(1475), + [sym_attributed_statement] = STATE(1475), + [sym_labeled_statement] = STATE(1475), + [sym_expression_statement] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1475), + [sym_case_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_do_statement] = STATE(1475), + [sym_for_statement] = STATE(1475), + [sym_return_statement] = STATE(1475), + [sym_break_statement] = STATE(1475), + [sym_continue_statement] = STATE(1475), + [sym_goto_statement] = STATE(1475), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym___restrict__] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym__Noreturn] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [anon_sym__Generic] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), + [131] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(1463), + [sym_attributed_statement] = STATE(1463), + [sym_labeled_statement] = STATE(1463), + [sym_expression_statement] = STATE(1463), + [sym_if_statement] = STATE(1463), + [sym_switch_statement] = STATE(1463), + [sym_case_statement] = STATE(1463), + [sym_while_statement] = STATE(1463), + [sym_do_statement] = STATE(1463), + [sym_for_statement] = STATE(1463), + [sym_return_statement] = STATE(1463), + [sym_break_statement] = STATE(1463), + [sym_continue_statement] = STATE(1463), + [sym_goto_statement] = STATE(1463), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [141] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym___restrict__] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym__Noreturn] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym__Generic] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), + [132] = { + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [133] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [143] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [134] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(77), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_case_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [135] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [145] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym___restrict__] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym__Noreturn] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [136] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_if_token2] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym___restrict__] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym__Noreturn] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [anon_sym__Generic] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [137] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token2] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [147] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1000), - [anon_sym___declspec] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym___restrict__] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym__Noreturn] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(1120), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [anon_sym__Generic] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [138] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token2] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [139] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [149] = { - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1000), - [anon_sym___declspec] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym___restrict__] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym__Noreturn] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(1122), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [anon_sym__Generic] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [140] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(80), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_case_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [150] = { - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym___restrict__] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym__Noreturn] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym___restrict__] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym__Noreturn] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [anon_sym__Generic] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), + [141] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [153] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [142] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(81), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym___restrict__] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym__Noreturn] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [143] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(252), + [sym_attributed_statement] = STATE(252), + [sym_labeled_statement] = STATE(252), + [sym_expression_statement] = STATE(252), + [sym_if_statement] = STATE(252), + [sym_switch_statement] = STATE(252), + [sym_case_statement] = STATE(252), + [sym_while_statement] = STATE(252), + [sym_do_statement] = STATE(252), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(252), + [sym_break_statement] = STATE(252), + [sym_continue_statement] = STATE(252), + [sym_goto_statement] = STATE(252), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [155] = { + [144] = { + [ts_builtin_sym_end] = ACTIONS(1006), [sym_identifier] = ACTIONS(1004), [aux_sym_preproc_include_token1] = ACTIONS(1004), [aux_sym_preproc_def_token1] = ACTIONS(1004), @@ -28867,7 +28175,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1004), [anon_sym___vectorcall] = ACTIONS(1004), [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_static] = ACTIONS(1004), [anon_sym_auto] = ACTIONS(1004), [anon_sym_register] = ACTIONS(1004), @@ -28901,6 +28208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), [anon_sym__Generic] = ACTIONS(1004), [sym_number_literal] = ACTIONS(1006), [anon_sym_L_SQUOTE] = ACTIONS(1006), @@ -28918,1750 +28226,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [anon_sym__Generic] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [145] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [146] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(82), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym___restrict__] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym__Noreturn] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [anon_sym__Generic] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [147] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(996), - [anon_sym___declspec] = ACTIONS(994), - [anon_sym___cdecl] = ACTIONS(994), - [anon_sym___clrcall] = ACTIONS(994), - [anon_sym___stdcall] = ACTIONS(994), - [anon_sym___fastcall] = ACTIONS(994), - [anon_sym___thiscall] = ACTIONS(994), - [anon_sym___vectorcall] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym___restrict__] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym__Noreturn] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [anon_sym__Generic] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), + [148] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [149] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(84), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym___restrict__] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym__Noreturn] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [anon_sym__Generic] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), + [150] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, - [162] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym___restrict__] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym__Noreturn] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), + [151] = { + [sym_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(148), + [sym_attributed_statement] = STATE(148), + [sym_labeled_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym_if_statement] = STATE(148), + [sym_switch_statement] = STATE(148), + [sym_case_statement] = STATE(148), + [sym_while_statement] = STATE(148), + [sym_do_statement] = STATE(148), + [sym_for_statement] = STATE(148), + [sym_return_statement] = STATE(148), + [sym_break_statement] = STATE(148), + [sym_continue_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(952), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym___restrict__] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym__Noreturn] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym__Generic] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [152] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(69), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [anon_sym__Generic] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), + [153] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(86), + [sym_attributed_statement] = STATE(86), + [sym_labeled_statement] = STATE(86), + [sym_expression_statement] = STATE(86), + [sym_if_statement] = STATE(86), + [sym_switch_statement] = STATE(86), + [sym_case_statement] = STATE(86), + [sym_while_statement] = STATE(86), + [sym_do_statement] = STATE(86), + [sym_for_statement] = STATE(86), + [sym_return_statement] = STATE(86), + [sym_break_statement] = STATE(86), + [sym_continue_statement] = STATE(86), + [sym_goto_statement] = STATE(86), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_if_token2] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym___restrict__] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym__Noreturn] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym__Generic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [154] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_identifier] = ACTIONS(1032), - [aux_sym_preproc_include_token1] = ACTIONS(1032), - [aux_sym_preproc_def_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token1] = ACTIONS(1032), - [aux_sym_preproc_if_token2] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), - [sym_preproc_directive] = ACTIONS(1032), - [anon_sym_LPAREN2] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_TILDE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_typedef] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym___attribute__] = ACTIONS(1032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), - [anon_sym___declspec] = ACTIONS(1032), - [anon_sym___cdecl] = ACTIONS(1032), - [anon_sym___clrcall] = ACTIONS(1032), - [anon_sym___stdcall] = ACTIONS(1032), - [anon_sym___fastcall] = ACTIONS(1032), - [anon_sym___thiscall] = ACTIONS(1032), - [anon_sym___vectorcall] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_auto] = ACTIONS(1032), - [anon_sym_register] = ACTIONS(1032), - [anon_sym_inline] = ACTIONS(1032), - [anon_sym_const] = ACTIONS(1032), - [anon_sym_volatile] = ACTIONS(1032), - [anon_sym_restrict] = ACTIONS(1032), - [anon_sym___restrict__] = ACTIONS(1032), - [anon_sym__Atomic] = ACTIONS(1032), - [anon_sym__Noreturn] = ACTIONS(1032), - [anon_sym_signed] = ACTIONS(1032), - [anon_sym_unsigned] = ACTIONS(1032), - [anon_sym_long] = ACTIONS(1032), - [anon_sym_short] = ACTIONS(1032), - [sym_primitive_type] = ACTIONS(1032), - [anon_sym_enum] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_switch] = ACTIONS(1032), - [anon_sym_case] = ACTIONS(1032), - [anon_sym_default] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_do] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_goto] = ACTIONS(1032), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_sizeof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1032), - [sym_number_literal] = ACTIONS(1034), - [anon_sym_L_SQUOTE] = ACTIONS(1034), - [anon_sym_u_SQUOTE] = ACTIONS(1034), - [anon_sym_U_SQUOTE] = ACTIONS(1034), - [anon_sym_u8_SQUOTE] = ACTIONS(1034), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_L_DQUOTE] = ACTIONS(1034), - [anon_sym_u_DQUOTE] = ACTIONS(1034), - [anon_sym_U_DQUOTE] = ACTIONS(1034), - [anon_sym_u8_DQUOTE] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token2] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym___restrict__] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym__Noreturn] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [anon_sym__Generic] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(996), - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(996), - [anon_sym___declspec] = ACTIONS(994), - [anon_sym___cdecl] = ACTIONS(994), - [anon_sym___clrcall] = ACTIONS(994), - [anon_sym___stdcall] = ACTIONS(994), - [anon_sym___fastcall] = ACTIONS(994), - [anon_sym___thiscall] = ACTIONS(994), - [anon_sym___vectorcall] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym___restrict__] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym__Noreturn] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [anon_sym__Generic] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym___restrict__] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym__Noreturn] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [anon_sym__Generic] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_if_token2] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_if_token2] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym___restrict__] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym__Noreturn] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [anon_sym__Generic] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_if_token2] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [155] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1261), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1270), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [178] = { + [156] = { + [ts_builtin_sym_end] = ACTIONS(1022), [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token2] = ACTIONS(1020), [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), [sym_preproc_directive] = ACTIONS(1020), @@ -30718,6 +29168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_PLUS_PLUS] = ACTIONS(1022), [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), [anon_sym__Generic] = ACTIONS(1020), [sym_number_literal] = ACTIONS(1022), [anon_sym_L_SQUOTE] = ACTIONS(1022), @@ -30735,1034 +29186,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token2] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym__expression] = STATE(649), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(601), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(601), - [sym_call_expression] = STATE(601), - [sym_field_expression] = STATE(601), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(601), - [sym_initializer_list] = STATE(617), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_identifier] = ACTIONS(878), - [anon_sym_LPAREN2] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1132), - [anon_sym_sizeof] = ACTIONS(1134), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_DASH_GT] = ACTIONS(880), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [157] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(89), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token2] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_LPAREN2] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_typedef] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym___attribute__] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), - [anon_sym___declspec] = ACTIONS(1016), - [anon_sym___cdecl] = ACTIONS(1016), - [anon_sym___clrcall] = ACTIONS(1016), - [anon_sym___stdcall] = ACTIONS(1016), - [anon_sym___fastcall] = ACTIONS(1016), - [anon_sym___thiscall] = ACTIONS(1016), - [anon_sym___vectorcall] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_auto] = ACTIONS(1016), - [anon_sym_register] = ACTIONS(1016), - [anon_sym_inline] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_volatile] = ACTIONS(1016), - [anon_sym_restrict] = ACTIONS(1016), - [anon_sym___restrict__] = ACTIONS(1016), - [anon_sym__Atomic] = ACTIONS(1016), - [anon_sym__Noreturn] = ACTIONS(1016), - [anon_sym_signed] = ACTIONS(1016), - [anon_sym_unsigned] = ACTIONS(1016), - [anon_sym_long] = ACTIONS(1016), - [anon_sym_short] = ACTIONS(1016), - [sym_primitive_type] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(1016), - [anon_sym_switch] = ACTIONS(1016), - [anon_sym_case] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_do] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_goto] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1018), - [anon_sym_sizeof] = ACTIONS(1016), - [anon_sym__Generic] = ACTIONS(1016), - [sym_number_literal] = ACTIONS(1018), - [anon_sym_L_SQUOTE] = ACTIONS(1018), - [anon_sym_u_SQUOTE] = ACTIONS(1018), - [anon_sym_U_SQUOTE] = ACTIONS(1018), - [anon_sym_u8_SQUOTE] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_L_DQUOTE] = ACTIONS(1018), - [anon_sym_u_DQUOTE] = ACTIONS(1018), - [anon_sym_U_DQUOTE] = ACTIONS(1018), - [anon_sym_u8_DQUOTE] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym_true] = ACTIONS(1016), - [sym_false] = ACTIONS(1016), - [sym_null] = ACTIONS(1016), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym___restrict__] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym__Noreturn] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [anon_sym__Generic] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(902), - [aux_sym_preproc_include_token1] = ACTIONS(902), - [aux_sym_preproc_def_token1] = ACTIONS(902), - [aux_sym_preproc_if_token1] = ACTIONS(902), - [aux_sym_preproc_if_token2] = ACTIONS(902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(902), - [sym_preproc_directive] = ACTIONS(902), - [anon_sym_LPAREN2] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_typedef] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym___attribute__] = ACTIONS(902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(904), - [anon_sym___declspec] = ACTIONS(902), - [anon_sym___cdecl] = ACTIONS(902), - [anon_sym___clrcall] = ACTIONS(902), - [anon_sym___stdcall] = ACTIONS(902), - [anon_sym___fastcall] = ACTIONS(902), - [anon_sym___thiscall] = ACTIONS(902), - [anon_sym___vectorcall] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_static] = ACTIONS(902), - [anon_sym_auto] = ACTIONS(902), - [anon_sym_register] = ACTIONS(902), - [anon_sym_inline] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_volatile] = ACTIONS(902), - [anon_sym_restrict] = ACTIONS(902), - [anon_sym___restrict__] = ACTIONS(902), - [anon_sym__Atomic] = ACTIONS(902), - [anon_sym__Noreturn] = ACTIONS(902), - [anon_sym_signed] = ACTIONS(902), - [anon_sym_unsigned] = ACTIONS(902), - [anon_sym_long] = ACTIONS(902), - [anon_sym_short] = ACTIONS(902), - [sym_primitive_type] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_goto] = ACTIONS(902), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_sizeof] = ACTIONS(902), - [anon_sym__Generic] = ACTIONS(902), - [sym_number_literal] = ACTIONS(904), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(904), - [anon_sym_u_DQUOTE] = ACTIONS(904), - [anon_sym_U_DQUOTE] = ACTIONS(904), - [anon_sym_u8_DQUOTE] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_true] = ACTIONS(902), - [sym_false] = ACTIONS(902), - [sym_null] = ACTIONS(902), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym___attribute__] = ACTIONS(958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(960), - [anon_sym___declspec] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym___restrict__] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym__Noreturn] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [anon_sym__Generic] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [anon_sym_L_SQUOTE] = ACTIONS(960), - [anon_sym_u_SQUOTE] = ACTIONS(960), - [anon_sym_U_SQUOTE] = ACTIONS(960), - [anon_sym_u8_SQUOTE] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_L_DQUOTE] = ACTIONS(960), - [anon_sym_u_DQUOTE] = ACTIONS(960), - [anon_sym_U_DQUOTE] = ACTIONS(960), - [anon_sym_u8_DQUOTE] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(930), - [aux_sym_preproc_def_token1] = ACTIONS(930), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_if_token2] = ACTIONS(930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(930), - [sym_preproc_directive] = ACTIONS(930), - [anon_sym_LPAREN2] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(930), - [anon_sym___attribute__] = ACTIONS(930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(932), - [anon_sym___declspec] = ACTIONS(930), - [anon_sym___cdecl] = ACTIONS(930), - [anon_sym___clrcall] = ACTIONS(930), - [anon_sym___stdcall] = ACTIONS(930), - [anon_sym___fastcall] = ACTIONS(930), - [anon_sym___thiscall] = ACTIONS(930), - [anon_sym___vectorcall] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_static] = ACTIONS(930), - [anon_sym_auto] = ACTIONS(930), - [anon_sym_register] = ACTIONS(930), - [anon_sym_inline] = ACTIONS(930), - [anon_sym_const] = ACTIONS(930), - [anon_sym_volatile] = ACTIONS(930), - [anon_sym_restrict] = ACTIONS(930), - [anon_sym___restrict__] = ACTIONS(930), - [anon_sym__Atomic] = ACTIONS(930), - [anon_sym__Noreturn] = ACTIONS(930), - [anon_sym_signed] = ACTIONS(930), - [anon_sym_unsigned] = ACTIONS(930), - [anon_sym_long] = ACTIONS(930), - [anon_sym_short] = ACTIONS(930), - [sym_primitive_type] = ACTIONS(930), - [anon_sym_enum] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(930), - [anon_sym_case] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_goto] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_sizeof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(930), - [sym_number_literal] = ACTIONS(932), - [anon_sym_L_SQUOTE] = ACTIONS(932), - [anon_sym_u_SQUOTE] = ACTIONS(932), - [anon_sym_U_SQUOTE] = ACTIONS(932), - [anon_sym_u8_SQUOTE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_L_DQUOTE] = ACTIONS(932), - [anon_sym_u_DQUOTE] = ACTIONS(932), - [anon_sym_U_DQUOTE] = ACTIONS(932), - [anon_sym_u8_DQUOTE] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_true] = ACTIONS(930), - [sym_false] = ACTIONS(930), - [sym_null] = ACTIONS(930), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym___restrict__] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym__Noreturn] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [anon_sym__Generic] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym___restrict__] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym__Noreturn] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym__Generic] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(940), - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym___restrict__] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym__Noreturn] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [anon_sym__Generic] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym___restrict__] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym__Noreturn] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [anon_sym__Generic] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_if_token2] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym___restrict__] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym__Noreturn] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [anon_sym__Generic] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [158] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [192] = { + [159] = { [ts_builtin_sym_end] = ACTIONS(1018), [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), @@ -31824,6 +29408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1018), [anon_sym_PLUS_PLUS] = ACTIONS(1018), [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), [anon_sym__Generic] = ACTIONS(1016), [sym_number_literal] = ACTIONS(1018), [anon_sym_L_SQUOTE] = ACTIONS(1018), @@ -31841,797 +29426,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(922), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_extern] = ACTIONS(922), - [anon_sym___attribute__] = ACTIONS(922), - [anon_sym_LBRACK_LBRACK] = ACTIONS(924), - [anon_sym___declspec] = ACTIONS(922), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_static] = ACTIONS(922), - [anon_sym_auto] = ACTIONS(922), - [anon_sym_register] = ACTIONS(922), - [anon_sym_inline] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_volatile] = ACTIONS(922), - [anon_sym_restrict] = ACTIONS(922), - [anon_sym___restrict__] = ACTIONS(922), - [anon_sym__Atomic] = ACTIONS(922), - [anon_sym__Noreturn] = ACTIONS(922), - [anon_sym_signed] = ACTIONS(922), - [anon_sym_unsigned] = ACTIONS(922), - [anon_sym_long] = ACTIONS(922), - [anon_sym_short] = ACTIONS(922), - [sym_primitive_type] = ACTIONS(922), - [anon_sym_enum] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_goto] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(922), - [anon_sym__Generic] = ACTIONS(922), - [sym_number_literal] = ACTIONS(924), - [anon_sym_L_SQUOTE] = ACTIONS(924), - [anon_sym_u_SQUOTE] = ACTIONS(924), - [anon_sym_U_SQUOTE] = ACTIONS(924), - [anon_sym_u8_SQUOTE] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_L_DQUOTE] = ACTIONS(924), - [anon_sym_u_DQUOTE] = ACTIONS(924), - [anon_sym_U_DQUOTE] = ACTIONS(924), - [anon_sym_u8_DQUOTE] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(956), - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym__Generic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(914), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(916), - [anon_sym_TILDE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_typedef] = ACTIONS(914), - [anon_sym_extern] = ACTIONS(914), - [anon_sym___attribute__] = ACTIONS(914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(916), - [anon_sym___declspec] = ACTIONS(914), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_static] = ACTIONS(914), - [anon_sym_auto] = ACTIONS(914), - [anon_sym_register] = ACTIONS(914), - [anon_sym_inline] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_volatile] = ACTIONS(914), - [anon_sym_restrict] = ACTIONS(914), - [anon_sym___restrict__] = ACTIONS(914), - [anon_sym__Atomic] = ACTIONS(914), - [anon_sym__Noreturn] = ACTIONS(914), - [anon_sym_signed] = ACTIONS(914), - [anon_sym_unsigned] = ACTIONS(914), - [anon_sym_long] = ACTIONS(914), - [anon_sym_short] = ACTIONS(914), - [sym_primitive_type] = ACTIONS(914), - [anon_sym_enum] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_union] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(916), - [anon_sym_sizeof] = ACTIONS(914), - [anon_sym__Generic] = ACTIONS(914), - [sym_number_literal] = ACTIONS(916), - [anon_sym_L_SQUOTE] = ACTIONS(916), - [anon_sym_u_SQUOTE] = ACTIONS(916), - [anon_sym_U_SQUOTE] = ACTIONS(916), - [anon_sym_u8_SQUOTE] = ACTIONS(916), - [anon_sym_SQUOTE] = ACTIONS(916), - [anon_sym_L_DQUOTE] = ACTIONS(916), - [anon_sym_u_DQUOTE] = ACTIONS(916), - [anon_sym_U_DQUOTE] = ACTIONS(916), - [anon_sym_u8_DQUOTE] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), + [160] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(179), + [sym_attributed_statement] = STATE(179), + [sym_labeled_statement] = STATE(179), + [sym_expression_statement] = STATE(179), + [sym_if_statement] = STATE(179), + [sym_switch_statement] = STATE(179), + [sym_case_statement] = STATE(179), + [sym_while_statement] = STATE(179), + [sym_do_statement] = STATE(179), + [sym_for_statement] = STATE(179), + [sym_return_statement] = STATE(179), + [sym_break_statement] = STATE(179), + [sym_continue_statement] = STATE(179), + [sym_goto_statement] = STATE(179), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [161] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(944), - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym___restrict__] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym__Noreturn] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [anon_sym__Generic] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), + [162] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(184), + [sym_attributed_statement] = STATE(184), + [sym_labeled_statement] = STATE(184), + [sym_expression_statement] = STATE(184), + [sym_if_statement] = STATE(184), + [sym_switch_statement] = STATE(184), + [sym_case_statement] = STATE(184), + [sym_while_statement] = STATE(184), + [sym_do_statement] = STATE(184), + [sym_for_statement] = STATE(184), + [sym_return_statement] = STATE(184), + [sym_break_statement] = STATE(184), + [sym_continue_statement] = STATE(184), + [sym_goto_statement] = STATE(184), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_identifier] = ACTIONS(1024), - [aux_sym_preproc_include_token1] = ACTIONS(1024), - [aux_sym_preproc_def_token1] = ACTIONS(1024), - [aux_sym_preproc_if_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1026), - [anon_sym_typedef] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1024), - [anon_sym___attribute__] = ACTIONS(1024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), - [anon_sym___declspec] = ACTIONS(1024), - [anon_sym___cdecl] = ACTIONS(1024), - [anon_sym___clrcall] = ACTIONS(1024), - [anon_sym___stdcall] = ACTIONS(1024), - [anon_sym___fastcall] = ACTIONS(1024), - [anon_sym___thiscall] = ACTIONS(1024), - [anon_sym___vectorcall] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_auto] = ACTIONS(1024), - [anon_sym_register] = ACTIONS(1024), - [anon_sym_inline] = ACTIONS(1024), - [anon_sym_const] = ACTIONS(1024), - [anon_sym_volatile] = ACTIONS(1024), - [anon_sym_restrict] = ACTIONS(1024), - [anon_sym___restrict__] = ACTIONS(1024), - [anon_sym__Atomic] = ACTIONS(1024), - [anon_sym__Noreturn] = ACTIONS(1024), - [anon_sym_signed] = ACTIONS(1024), - [anon_sym_unsigned] = ACTIONS(1024), - [anon_sym_long] = ACTIONS(1024), - [anon_sym_short] = ACTIONS(1024), - [sym_primitive_type] = ACTIONS(1024), - [anon_sym_enum] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1024), - [anon_sym_union] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_switch] = ACTIONS(1024), - [anon_sym_case] = ACTIONS(1024), - [anon_sym_default] = ACTIONS(1024), - [anon_sym_while] = ACTIONS(1024), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_continue] = ACTIONS(1024), - [anon_sym_goto] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1024), - [anon_sym__Generic] = ACTIONS(1024), - [sym_number_literal] = ACTIONS(1026), - [anon_sym_L_SQUOTE] = ACTIONS(1026), - [anon_sym_u_SQUOTE] = ACTIONS(1026), - [anon_sym_U_SQUOTE] = ACTIONS(1026), - [anon_sym_u8_SQUOTE] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1024), - [sym_false] = ACTIONS(1024), - [sym_null] = ACTIONS(1024), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(990), - [aux_sym_preproc_include_token1] = ACTIONS(990), - [aux_sym_preproc_def_token1] = ACTIONS(990), - [aux_sym_preproc_if_token1] = ACTIONS(990), - [aux_sym_preproc_if_token2] = ACTIONS(990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(990), - [sym_preproc_directive] = ACTIONS(990), - [anon_sym_LPAREN2] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym___attribute__] = ACTIONS(990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(990), - [anon_sym___cdecl] = ACTIONS(990), - [anon_sym___clrcall] = ACTIONS(990), - [anon_sym___stdcall] = ACTIONS(990), - [anon_sym___fastcall] = ACTIONS(990), - [anon_sym___thiscall] = ACTIONS(990), - [anon_sym___vectorcall] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_static] = ACTIONS(990), - [anon_sym_auto] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_inline] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_volatile] = ACTIONS(990), - [anon_sym_restrict] = ACTIONS(990), - [anon_sym___restrict__] = ACTIONS(990), - [anon_sym__Atomic] = ACTIONS(990), - [anon_sym__Noreturn] = ACTIONS(990), - [anon_sym_signed] = ACTIONS(990), - [anon_sym_unsigned] = ACTIONS(990), - [anon_sym_long] = ACTIONS(990), - [anon_sym_short] = ACTIONS(990), - [sym_primitive_type] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_case] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_sizeof] = ACTIONS(990), - [anon_sym__Generic] = ACTIONS(990), - [sym_number_literal] = ACTIONS(992), - [anon_sym_L_SQUOTE] = ACTIONS(992), - [anon_sym_u_SQUOTE] = ACTIONS(992), - [anon_sym_U_SQUOTE] = ACTIONS(992), - [anon_sym_u8_SQUOTE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(992), - [anon_sym_L_DQUOTE] = ACTIONS(992), - [anon_sym_u_DQUOTE] = ACTIONS(992), - [anon_sym_U_DQUOTE] = ACTIONS(992), - [anon_sym_u8_DQUOTE] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(936), - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym___restrict__] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym__Noreturn] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [anon_sym__Generic] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(1022), - [sym_identifier] = ACTIONS(1020), - [aux_sym_preproc_include_token1] = ACTIONS(1020), - [aux_sym_preproc_def_token1] = ACTIONS(1020), - [aux_sym_preproc_if_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), - [sym_preproc_directive] = ACTIONS(1020), - [anon_sym_LPAREN2] = ACTIONS(1022), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1022), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1020), - [anon_sym_extern] = ACTIONS(1020), - [anon_sym___attribute__] = ACTIONS(1020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), - [anon_sym___declspec] = ACTIONS(1020), - [anon_sym___cdecl] = ACTIONS(1020), - [anon_sym___clrcall] = ACTIONS(1020), - [anon_sym___stdcall] = ACTIONS(1020), - [anon_sym___fastcall] = ACTIONS(1020), - [anon_sym___thiscall] = ACTIONS(1020), - [anon_sym___vectorcall] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1022), - [anon_sym_static] = ACTIONS(1020), - [anon_sym_auto] = ACTIONS(1020), - [anon_sym_register] = ACTIONS(1020), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_const] = ACTIONS(1020), - [anon_sym_volatile] = ACTIONS(1020), - [anon_sym_restrict] = ACTIONS(1020), - [anon_sym___restrict__] = ACTIONS(1020), - [anon_sym__Atomic] = ACTIONS(1020), - [anon_sym__Noreturn] = ACTIONS(1020), - [anon_sym_signed] = ACTIONS(1020), - [anon_sym_unsigned] = ACTIONS(1020), - [anon_sym_long] = ACTIONS(1020), - [anon_sym_short] = ACTIONS(1020), - [sym_primitive_type] = ACTIONS(1020), - [anon_sym_enum] = ACTIONS(1020), - [anon_sym_struct] = ACTIONS(1020), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_else] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1020), - [anon_sym_case] = ACTIONS(1020), - [anon_sym_default] = ACTIONS(1020), - [anon_sym_while] = ACTIONS(1020), - [anon_sym_do] = ACTIONS(1020), - [anon_sym_for] = ACTIONS(1020), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1020), - [anon_sym_continue] = ACTIONS(1020), - [anon_sym_goto] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1022), - [anon_sym_sizeof] = ACTIONS(1020), - [anon_sym__Generic] = ACTIONS(1020), - [sym_number_literal] = ACTIONS(1022), - [anon_sym_L_SQUOTE] = ACTIONS(1022), - [anon_sym_u_SQUOTE] = ACTIONS(1022), - [anon_sym_U_SQUOTE] = ACTIONS(1022), - [anon_sym_u8_SQUOTE] = ACTIONS(1022), - [anon_sym_SQUOTE] = ACTIONS(1022), - [anon_sym_L_DQUOTE] = ACTIONS(1022), - [anon_sym_u_DQUOTE] = ACTIONS(1022), - [anon_sym_U_DQUOTE] = ACTIONS(1022), - [anon_sym_u8_DQUOTE] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym_true] = ACTIONS(1020), - [sym_false] = ACTIONS(1020), - [sym_null] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - }, - [203] = { + [163] = { [ts_builtin_sym_end] = ACTIONS(908), [sym_identifier] = ACTIONS(906), [aux_sym_preproc_include_token1] = ACTIONS(906), @@ -32693,6 +29728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(908), [anon_sym_PLUS_PLUS] = ACTIONS(908), [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), [anon_sym__Generic] = ACTIONS(906), [sym_number_literal] = ACTIONS(908), [anon_sym_L_SQUOTE] = ACTIONS(908), @@ -32710,718 +29746,1208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(906), - [aux_sym_preproc_include_token1] = ACTIONS(906), - [aux_sym_preproc_def_token1] = ACTIONS(906), - [aux_sym_preproc_if_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(906), - [sym_preproc_directive] = ACTIONS(906), - [anon_sym_LPAREN2] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(908), - [anon_sym_TILDE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_typedef] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym___attribute__] = ACTIONS(906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(908), - [anon_sym___declspec] = ACTIONS(906), - [anon_sym___cdecl] = ACTIONS(906), - [anon_sym___clrcall] = ACTIONS(906), - [anon_sym___stdcall] = ACTIONS(906), - [anon_sym___fastcall] = ACTIONS(906), - [anon_sym___thiscall] = ACTIONS(906), - [anon_sym___vectorcall] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_static] = ACTIONS(906), - [anon_sym_auto] = ACTIONS(906), - [anon_sym_register] = ACTIONS(906), - [anon_sym_inline] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_volatile] = ACTIONS(906), - [anon_sym_restrict] = ACTIONS(906), - [anon_sym___restrict__] = ACTIONS(906), - [anon_sym__Atomic] = ACTIONS(906), - [anon_sym__Noreturn] = ACTIONS(906), - [anon_sym_signed] = ACTIONS(906), - [anon_sym_unsigned] = ACTIONS(906), - [anon_sym_long] = ACTIONS(906), - [anon_sym_short] = ACTIONS(906), - [sym_primitive_type] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_goto] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(908), - [anon_sym_PLUS_PLUS] = ACTIONS(908), - [anon_sym_sizeof] = ACTIONS(906), - [anon_sym__Generic] = ACTIONS(906), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(908), - [anon_sym_u_SQUOTE] = ACTIONS(908), - [anon_sym_U_SQUOTE] = ACTIONS(908), - [anon_sym_u8_SQUOTE] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(908), - [anon_sym_L_DQUOTE] = ACTIONS(908), - [anon_sym_u_DQUOTE] = ACTIONS(908), - [anon_sym_U_DQUOTE] = ACTIONS(908), - [anon_sym_u8_DQUOTE] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(898), - [aux_sym_preproc_def_token1] = ACTIONS(898), - [aux_sym_preproc_if_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(898), - [sym_preproc_directive] = ACTIONS(898), - [anon_sym_LPAREN2] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(900), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_typedef] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym___attribute__] = ACTIONS(898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(900), - [anon_sym___declspec] = ACTIONS(898), - [anon_sym___cdecl] = ACTIONS(898), - [anon_sym___clrcall] = ACTIONS(898), - [anon_sym___stdcall] = ACTIONS(898), - [anon_sym___fastcall] = ACTIONS(898), - [anon_sym___thiscall] = ACTIONS(898), - [anon_sym___vectorcall] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_static] = ACTIONS(898), - [anon_sym_auto] = ACTIONS(898), - [anon_sym_register] = ACTIONS(898), - [anon_sym_inline] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_volatile] = ACTIONS(898), - [anon_sym_restrict] = ACTIONS(898), - [anon_sym___restrict__] = ACTIONS(898), - [anon_sym__Atomic] = ACTIONS(898), - [anon_sym__Noreturn] = ACTIONS(898), - [anon_sym_signed] = ACTIONS(898), - [anon_sym_unsigned] = ACTIONS(898), - [anon_sym_long] = ACTIONS(898), - [anon_sym_short] = ACTIONS(898), - [sym_primitive_type] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_case] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_goto] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(898), - [anon_sym__Generic] = ACTIONS(898), - [sym_number_literal] = ACTIONS(900), - [anon_sym_L_SQUOTE] = ACTIONS(900), - [anon_sym_u_SQUOTE] = ACTIONS(900), - [anon_sym_U_SQUOTE] = ACTIONS(900), - [anon_sym_u8_SQUOTE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(900), - [anon_sym_L_DQUOTE] = ACTIONS(900), - [anon_sym_u_DQUOTE] = ACTIONS(900), - [anon_sym_U_DQUOTE] = ACTIONS(900), - [anon_sym_u8_DQUOTE] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_LPAREN2] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym___attribute__] = ACTIONS(1028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym___declspec] = ACTIONS(1028), - [anon_sym___cdecl] = ACTIONS(1028), - [anon_sym___clrcall] = ACTIONS(1028), - [anon_sym___stdcall] = ACTIONS(1028), - [anon_sym___fastcall] = ACTIONS(1028), - [anon_sym___thiscall] = ACTIONS(1028), - [anon_sym___vectorcall] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1028), - [anon_sym_auto] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_inline] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_volatile] = ACTIONS(1028), - [anon_sym_restrict] = ACTIONS(1028), - [anon_sym___restrict__] = ACTIONS(1028), - [anon_sym__Atomic] = ACTIONS(1028), - [anon_sym__Noreturn] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(1028), - [anon_sym_unsigned] = ACTIONS(1028), - [anon_sym_long] = ACTIONS(1028), - [anon_sym_short] = ACTIONS(1028), - [sym_primitive_type] = ACTIONS(1028), - [anon_sym_enum] = ACTIONS(1028), - [anon_sym_struct] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_switch] = ACTIONS(1028), - [anon_sym_case] = ACTIONS(1028), - [anon_sym_default] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_goto] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_PLUS_PLUS] = ACTIONS(1030), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym__Generic] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1030), - [anon_sym_u_SQUOTE] = ACTIONS(1030), - [anon_sym_U_SQUOTE] = ACTIONS(1030), - [anon_sym_u8_SQUOTE] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_L_DQUOTE] = ACTIONS(1030), - [anon_sym_u_DQUOTE] = ACTIONS(1030), - [anon_sym_U_DQUOTE] = ACTIONS(1030), - [anon_sym_u8_DQUOTE] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), + [164] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym___attribute__] = ACTIONS(982), - [anon_sym_LBRACK_LBRACK] = ACTIONS(984), - [anon_sym___declspec] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_static] = ACTIONS(982), - [anon_sym_auto] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_inline] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_volatile] = ACTIONS(982), - [anon_sym_restrict] = ACTIONS(982), - [anon_sym___restrict__] = ACTIONS(982), - [anon_sym__Atomic] = ACTIONS(982), - [anon_sym__Noreturn] = ACTIONS(982), - [anon_sym_signed] = ACTIONS(982), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_goto] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(982), - [anon_sym__Generic] = ACTIONS(982), - [sym_number_literal] = ACTIONS(984), - [anon_sym_L_SQUOTE] = ACTIONS(984), - [anon_sym_u_SQUOTE] = ACTIONS(984), - [anon_sym_U_SQUOTE] = ACTIONS(984), - [anon_sym_u8_SQUOTE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_L_DQUOTE] = ACTIONS(984), - [anon_sym_u_DQUOTE] = ACTIONS(984), - [anon_sym_U_DQUOTE] = ACTIONS(984), - [anon_sym_u8_DQUOTE] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_true] = ACTIONS(982), - [sym_false] = ACTIONS(982), - [sym_null] = ACTIONS(982), + [165] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [166] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_if_token2] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), [sym_comment] = ACTIONS(3), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym___restrict__] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym__Noreturn] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [anon_sym__Generic] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), + [167] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(1008), - [aux_sym_preproc_include_token1] = ACTIONS(1008), - [aux_sym_preproc_def_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token1] = ACTIONS(1008), - [aux_sym_preproc_if_token2] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), - [sym_preproc_directive] = ACTIONS(1008), - [anon_sym_LPAREN2] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym___attribute__] = ACTIONS(1008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), - [anon_sym___declspec] = ACTIONS(1008), - [anon_sym___cdecl] = ACTIONS(1008), - [anon_sym___clrcall] = ACTIONS(1008), - [anon_sym___stdcall] = ACTIONS(1008), - [anon_sym___fastcall] = ACTIONS(1008), - [anon_sym___thiscall] = ACTIONS(1008), - [anon_sym___vectorcall] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_auto] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_inline] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_volatile] = ACTIONS(1008), - [anon_sym_restrict] = ACTIONS(1008), - [anon_sym___restrict__] = ACTIONS(1008), - [anon_sym__Atomic] = ACTIONS(1008), - [anon_sym__Noreturn] = ACTIONS(1008), - [anon_sym_signed] = ACTIONS(1008), - [anon_sym_unsigned] = ACTIONS(1008), - [anon_sym_long] = ACTIONS(1008), - [anon_sym_short] = ACTIONS(1008), - [sym_primitive_type] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(1008), - [anon_sym_case] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_goto] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_sizeof] = ACTIONS(1008), - [anon_sym__Generic] = ACTIONS(1008), - [sym_number_literal] = ACTIONS(1010), - [anon_sym_L_SQUOTE] = ACTIONS(1010), - [anon_sym_u_SQUOTE] = ACTIONS(1010), - [anon_sym_U_SQUOTE] = ACTIONS(1010), - [anon_sym_u8_SQUOTE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_L_DQUOTE] = ACTIONS(1010), - [anon_sym_u_DQUOTE] = ACTIONS(1010), - [anon_sym_U_DQUOTE] = ACTIONS(1010), - [anon_sym_u8_DQUOTE] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym_true] = ACTIONS(1008), - [sym_false] = ACTIONS(1008), - [sym_null] = ACTIONS(1008), + [168] = { + [ts_builtin_sym_end] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(926), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(926), - [anon_sym_extern] = ACTIONS(926), - [anon_sym___attribute__] = ACTIONS(926), - [anon_sym_LBRACK_LBRACK] = ACTIONS(928), - [anon_sym___declspec] = ACTIONS(926), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_static] = ACTIONS(926), - [anon_sym_auto] = ACTIONS(926), - [anon_sym_register] = ACTIONS(926), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_const] = ACTIONS(926), - [anon_sym_volatile] = ACTIONS(926), - [anon_sym_restrict] = ACTIONS(926), - [anon_sym___restrict__] = ACTIONS(926), - [anon_sym__Atomic] = ACTIONS(926), - [anon_sym__Noreturn] = ACTIONS(926), - [anon_sym_signed] = ACTIONS(926), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), - [sym_primitive_type] = ACTIONS(926), - [anon_sym_enum] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_union] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_do] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_return] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_sizeof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(926), - [sym_number_literal] = ACTIONS(928), - [anon_sym_L_SQUOTE] = ACTIONS(928), - [anon_sym_u_SQUOTE] = ACTIONS(928), - [anon_sym_U_SQUOTE] = ACTIONS(928), - [anon_sym_u8_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_L_DQUOTE] = ACTIONS(928), - [anon_sym_u_DQUOTE] = ACTIONS(928), - [anon_sym_U_DQUOTE] = ACTIONS(928), - [anon_sym_u8_DQUOTE] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_true] = ACTIONS(926), - [sym_false] = ACTIONS(926), - [sym_null] = ACTIONS(926), + [169] = { + [ts_builtin_sym_end] = ACTIONS(1042), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), [sym_comment] = ACTIONS(3), }, - [213] = { + [170] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_if_token2] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_if_token2] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(236), + [sym_attributed_statement] = STATE(236), + [sym_labeled_statement] = STATE(236), + [sym_expression_statement] = STATE(236), + [sym_if_statement] = STATE(236), + [sym_switch_statement] = STATE(236), + [sym_case_statement] = STATE(236), + [sym_while_statement] = STATE(236), + [sym_do_statement] = STATE(236), + [sym_for_statement] = STATE(236), + [sym_return_statement] = STATE(236), + [sym_break_statement] = STATE(236), + [sym_continue_statement] = STATE(236), + [sym_goto_statement] = STATE(236), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [175] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_if_token2] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [ts_builtin_sym_end] = ACTIONS(1010), [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -33449,7 +30975,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1008), [anon_sym___vectorcall] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_static] = ACTIONS(1008), [anon_sym_auto] = ACTIONS(1008), [anon_sym_register] = ACTIONS(1008), @@ -33483,6 +31008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), [anon_sym__Generic] = ACTIONS(1008), [sym_number_literal] = ACTIONS(1010), [anon_sym_L_SQUOTE] = ACTIONS(1010), @@ -33500,655 +31026,1623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_identifier] = ACTIONS(946), - [aux_sym_preproc_include_token1] = ACTIONS(946), - [aux_sym_preproc_def_token1] = ACTIONS(946), - [aux_sym_preproc_if_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(946), - [sym_preproc_directive] = ACTIONS(946), - [anon_sym_LPAREN2] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(946), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(948), - [anon_sym___declspec] = ACTIONS(946), - [anon_sym___cdecl] = ACTIONS(946), - [anon_sym___clrcall] = ACTIONS(946), - [anon_sym___stdcall] = ACTIONS(946), - [anon_sym___fastcall] = ACTIONS(946), - [anon_sym___thiscall] = ACTIONS(946), - [anon_sym___vectorcall] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_volatile] = ACTIONS(946), - [anon_sym_restrict] = ACTIONS(946), - [anon_sym___restrict__] = ACTIONS(946), - [anon_sym__Atomic] = ACTIONS(946), - [anon_sym__Noreturn] = ACTIONS(946), - [anon_sym_signed] = ACTIONS(946), - [anon_sym_unsigned] = ACTIONS(946), - [anon_sym_long] = ACTIONS(946), - [anon_sym_short] = ACTIONS(946), - [sym_primitive_type] = ACTIONS(946), - [anon_sym_enum] = ACTIONS(946), - [anon_sym_struct] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_if] = ACTIONS(946), - [anon_sym_else] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_while] = ACTIONS(946), - [anon_sym_do] = ACTIONS(946), - [anon_sym_for] = ACTIONS(946), - [anon_sym_return] = ACTIONS(946), - [anon_sym_break] = ACTIONS(946), - [anon_sym_continue] = ACTIONS(946), - [anon_sym_goto] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(948), - [anon_sym_sizeof] = ACTIONS(946), - [anon_sym__Generic] = ACTIONS(946), - [sym_number_literal] = ACTIONS(948), - [anon_sym_L_SQUOTE] = ACTIONS(948), - [anon_sym_u_SQUOTE] = ACTIONS(948), - [anon_sym_U_SQUOTE] = ACTIONS(948), - [anon_sym_u8_SQUOTE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_L_DQUOTE] = ACTIONS(948), - [anon_sym_u_DQUOTE] = ACTIONS(948), - [anon_sym_U_DQUOTE] = ACTIONS(948), - [anon_sym_u8_DQUOTE] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym_true] = ACTIONS(946), - [sym_false] = ACTIONS(946), - [sym_null] = ACTIONS(946), + [180] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_if_token2] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [215] = { - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(950), - [aux_sym_preproc_def_token1] = ACTIONS(950), - [aux_sym_preproc_if_token1] = ACTIONS(950), - [aux_sym_preproc_if_token2] = ACTIONS(950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(950), - [sym_preproc_directive] = ACTIONS(950), - [anon_sym_LPAREN2] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(950), - [anon_sym___attribute__] = ACTIONS(950), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(950), - [anon_sym___cdecl] = ACTIONS(950), - [anon_sym___clrcall] = ACTIONS(950), - [anon_sym___stdcall] = ACTIONS(950), - [anon_sym___fastcall] = ACTIONS(950), - [anon_sym___thiscall] = ACTIONS(950), - [anon_sym___vectorcall] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_static] = ACTIONS(950), - [anon_sym_auto] = ACTIONS(950), - [anon_sym_register] = ACTIONS(950), - [anon_sym_inline] = ACTIONS(950), - [anon_sym_const] = ACTIONS(950), - [anon_sym_volatile] = ACTIONS(950), - [anon_sym_restrict] = ACTIONS(950), - [anon_sym___restrict__] = ACTIONS(950), - [anon_sym__Atomic] = ACTIONS(950), - [anon_sym__Noreturn] = ACTIONS(950), - [anon_sym_signed] = ACTIONS(950), - [anon_sym_unsigned] = ACTIONS(950), - [anon_sym_long] = ACTIONS(950), - [anon_sym_short] = ACTIONS(950), - [sym_primitive_type] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_struct] = ACTIONS(950), - [anon_sym_union] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_else] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(950), - [anon_sym_case] = ACTIONS(950), - [anon_sym_default] = ACTIONS(950), - [anon_sym_while] = ACTIONS(950), - [anon_sym_do] = ACTIONS(950), - [anon_sym_for] = ACTIONS(950), - [anon_sym_return] = ACTIONS(950), - [anon_sym_break] = ACTIONS(950), - [anon_sym_continue] = ACTIONS(950), - [anon_sym_goto] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(952), - [anon_sym_sizeof] = ACTIONS(950), - [anon_sym__Generic] = ACTIONS(950), - [sym_number_literal] = ACTIONS(952), - [anon_sym_L_SQUOTE] = ACTIONS(952), - [anon_sym_u_SQUOTE] = ACTIONS(952), - [anon_sym_U_SQUOTE] = ACTIONS(952), - [anon_sym_u8_SQUOTE] = ACTIONS(952), - [anon_sym_SQUOTE] = ACTIONS(952), - [anon_sym_L_DQUOTE] = ACTIONS(952), - [anon_sym_u_DQUOTE] = ACTIONS(952), - [anon_sym_U_DQUOTE] = ACTIONS(952), - [anon_sym_u8_DQUOTE] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), + [181] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(938), - [aux_sym_preproc_include_token1] = ACTIONS(938), - [aux_sym_preproc_def_token1] = ACTIONS(938), - [aux_sym_preproc_if_token1] = ACTIONS(938), - [aux_sym_preproc_if_token2] = ACTIONS(938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(938), - [sym_preproc_directive] = ACTIONS(938), - [anon_sym_LPAREN2] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym___attribute__] = ACTIONS(938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(940), - [anon_sym___declspec] = ACTIONS(938), - [anon_sym___cdecl] = ACTIONS(938), - [anon_sym___clrcall] = ACTIONS(938), - [anon_sym___stdcall] = ACTIONS(938), - [anon_sym___fastcall] = ACTIONS(938), - [anon_sym___thiscall] = ACTIONS(938), - [anon_sym___vectorcall] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_static] = ACTIONS(938), - [anon_sym_auto] = ACTIONS(938), - [anon_sym_register] = ACTIONS(938), - [anon_sym_inline] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_volatile] = ACTIONS(938), - [anon_sym_restrict] = ACTIONS(938), - [anon_sym___restrict__] = ACTIONS(938), - [anon_sym__Atomic] = ACTIONS(938), - [anon_sym__Noreturn] = ACTIONS(938), - [anon_sym_signed] = ACTIONS(938), - [anon_sym_unsigned] = ACTIONS(938), - [anon_sym_long] = ACTIONS(938), - [anon_sym_short] = ACTIONS(938), - [sym_primitive_type] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_else] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(938), - [anon_sym_case] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_do] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_goto] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(938), - [anon_sym__Generic] = ACTIONS(938), - [sym_number_literal] = ACTIONS(940), - [anon_sym_L_SQUOTE] = ACTIONS(940), - [anon_sym_u_SQUOTE] = ACTIONS(940), - [anon_sym_U_SQUOTE] = ACTIONS(940), - [anon_sym_u8_SQUOTE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_L_DQUOTE] = ACTIONS(940), - [anon_sym_u_DQUOTE] = ACTIONS(940), - [anon_sym_U_DQUOTE] = ACTIONS(940), - [anon_sym_u8_DQUOTE] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(940), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(938), + [182] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(197), + [sym_attributed_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(978), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym___attribute__] = ACTIONS(978), - [anon_sym_LBRACK_LBRACK] = ACTIONS(980), - [anon_sym___declspec] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_static] = ACTIONS(978), - [anon_sym_auto] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_inline] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_volatile] = ACTIONS(978), - [anon_sym_restrict] = ACTIONS(978), - [anon_sym___restrict__] = ACTIONS(978), - [anon_sym__Atomic] = ACTIONS(978), - [anon_sym__Noreturn] = ACTIONS(978), - [anon_sym_signed] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(978), - [anon_sym_long] = ACTIONS(978), - [anon_sym_short] = ACTIONS(978), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(978), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_goto] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_sizeof] = ACTIONS(978), - [anon_sym__Generic] = ACTIONS(978), - [sym_number_literal] = ACTIONS(980), - [anon_sym_L_SQUOTE] = ACTIONS(980), - [anon_sym_u_SQUOTE] = ACTIONS(980), - [anon_sym_U_SQUOTE] = ACTIONS(980), - [anon_sym_u8_SQUOTE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_L_DQUOTE] = ACTIONS(980), - [anon_sym_u_DQUOTE] = ACTIONS(980), - [anon_sym_U_DQUOTE] = ACTIONS(980), - [anon_sym_u8_DQUOTE] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_true] = ACTIONS(978), - [sym_false] = ACTIONS(978), - [sym_null] = ACTIONS(978), + [183] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(98), + [sym_attributed_statement] = STATE(98), + [sym_labeled_statement] = STATE(98), + [sym_expression_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_switch_statement] = STATE(98), + [sym_case_statement] = STATE(98), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(98), + [sym_return_statement] = STATE(98), + [sym_break_statement] = STATE(98), + [sym_continue_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(966), - [aux_sym_preproc_include_token1] = ACTIONS(966), - [aux_sym_preproc_def_token1] = ACTIONS(966), - [aux_sym_preproc_if_token1] = ACTIONS(966), - [aux_sym_preproc_if_token2] = ACTIONS(966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(966), - [sym_preproc_directive] = ACTIONS(966), - [anon_sym_LPAREN2] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym___attribute__] = ACTIONS(966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(966), - [anon_sym___clrcall] = ACTIONS(966), - [anon_sym___stdcall] = ACTIONS(966), - [anon_sym___fastcall] = ACTIONS(966), - [anon_sym___thiscall] = ACTIONS(966), - [anon_sym___vectorcall] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_static] = ACTIONS(966), - [anon_sym_auto] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_inline] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_volatile] = ACTIONS(966), - [anon_sym_restrict] = ACTIONS(966), - [anon_sym___restrict__] = ACTIONS(966), - [anon_sym__Atomic] = ACTIONS(966), - [anon_sym__Noreturn] = ACTIONS(966), - [anon_sym_signed] = ACTIONS(966), - [anon_sym_unsigned] = ACTIONS(966), - [anon_sym_long] = ACTIONS(966), - [anon_sym_short] = ACTIONS(966), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(966), - [anon_sym_case] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_sizeof] = ACTIONS(966), - [anon_sym__Generic] = ACTIONS(966), - [sym_number_literal] = ACTIONS(968), - [anon_sym_L_SQUOTE] = ACTIONS(968), - [anon_sym_u_SQUOTE] = ACTIONS(968), - [anon_sym_U_SQUOTE] = ACTIONS(968), - [anon_sym_u8_SQUOTE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_L_DQUOTE] = ACTIONS(968), - [anon_sym_u_DQUOTE] = ACTIONS(968), - [anon_sym_U_DQUOTE] = ACTIONS(968), - [anon_sym_u8_DQUOTE] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(966), + [184] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_identifier] = ACTIONS(986), - [aux_sym_preproc_include_token1] = ACTIONS(986), - [aux_sym_preproc_def_token1] = ACTIONS(986), - [aux_sym_preproc_if_token1] = ACTIONS(986), - [aux_sym_preproc_if_token2] = ACTIONS(986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(986), - [sym_preproc_directive] = ACTIONS(986), - [anon_sym_LPAREN2] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym___attribute__] = ACTIONS(986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(988), - [anon_sym___declspec] = ACTIONS(986), - [anon_sym___cdecl] = ACTIONS(986), - [anon_sym___clrcall] = ACTIONS(986), - [anon_sym___stdcall] = ACTIONS(986), - [anon_sym___fastcall] = ACTIONS(986), - [anon_sym___thiscall] = ACTIONS(986), - [anon_sym___vectorcall] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_static] = ACTIONS(986), - [anon_sym_auto] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_inline] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_volatile] = ACTIONS(986), - [anon_sym_restrict] = ACTIONS(986), - [anon_sym___restrict__] = ACTIONS(986), - [anon_sym__Atomic] = ACTIONS(986), - [anon_sym__Noreturn] = ACTIONS(986), - [anon_sym_signed] = ACTIONS(986), - [anon_sym_unsigned] = ACTIONS(986), - [anon_sym_long] = ACTIONS(986), - [anon_sym_short] = ACTIONS(986), - [sym_primitive_type] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(986), - [anon_sym_case] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_goto] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym__Generic] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_L_SQUOTE] = ACTIONS(988), - [anon_sym_u_SQUOTE] = ACTIONS(988), - [anon_sym_U_SQUOTE] = ACTIONS(988), - [anon_sym_u8_SQUOTE] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_L_DQUOTE] = ACTIONS(988), - [anon_sym_u_DQUOTE] = ACTIONS(988), - [anon_sym_U_DQUOTE] = ACTIONS(988), - [anon_sym_u8_DQUOTE] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_true] = ACTIONS(986), - [sym_false] = ACTIONS(986), - [sym_null] = ACTIONS(986), + [185] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(974), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym___attribute__] = ACTIONS(974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(976), - [anon_sym___declspec] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_static] = ACTIONS(974), - [anon_sym_auto] = ACTIONS(974), - [anon_sym_register] = ACTIONS(974), - [anon_sym_inline] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_volatile] = ACTIONS(974), - [anon_sym_restrict] = ACTIONS(974), - [anon_sym___restrict__] = ACTIONS(974), - [anon_sym__Atomic] = ACTIONS(974), - [anon_sym__Noreturn] = ACTIONS(974), - [anon_sym_signed] = ACTIONS(974), - [anon_sym_unsigned] = ACTIONS(974), - [anon_sym_long] = ACTIONS(974), - [anon_sym_short] = ACTIONS(974), - [sym_primitive_type] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(974), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_goto] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_sizeof] = ACTIONS(974), - [anon_sym__Generic] = ACTIONS(974), - [sym_number_literal] = ACTIONS(976), - [anon_sym_L_SQUOTE] = ACTIONS(976), - [anon_sym_u_SQUOTE] = ACTIONS(976), - [anon_sym_U_SQUOTE] = ACTIONS(976), - [anon_sym_u8_SQUOTE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_L_DQUOTE] = ACTIONS(976), - [anon_sym_u_DQUOTE] = ACTIONS(976), - [anon_sym_U_DQUOTE] = ACTIONS(976), - [anon_sym_u8_DQUOTE] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_true] = ACTIONS(974), - [sym_false] = ACTIONS(974), - [sym_null] = ACTIONS(974), + [186] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(199), + [sym_attributed_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(970), - [aux_sym_preproc_include_token1] = ACTIONS(970), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(970), - [aux_sym_preproc_if_token2] = ACTIONS(970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(970), - [sym_preproc_directive] = ACTIONS(970), - [anon_sym_LPAREN2] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym___attribute__] = ACTIONS(970), - [anon_sym_LBRACK_LBRACK] = ACTIONS(972), - [anon_sym___declspec] = ACTIONS(970), - [anon_sym___cdecl] = ACTIONS(970), - [anon_sym___clrcall] = ACTIONS(970), - [anon_sym___stdcall] = ACTIONS(970), - [anon_sym___fastcall] = ACTIONS(970), - [anon_sym___thiscall] = ACTIONS(970), - [anon_sym___vectorcall] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_static] = ACTIONS(970), - [anon_sym_auto] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_inline] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_volatile] = ACTIONS(970), - [anon_sym_restrict] = ACTIONS(970), - [anon_sym___restrict__] = ACTIONS(970), - [anon_sym__Atomic] = ACTIONS(970), - [anon_sym__Noreturn] = ACTIONS(970), - [anon_sym_signed] = ACTIONS(970), - [anon_sym_unsigned] = ACTIONS(970), - [anon_sym_long] = ACTIONS(970), - [anon_sym_short] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(970), - [anon_sym_case] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_goto] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(972), - [anon_sym_sizeof] = ACTIONS(970), - [anon_sym__Generic] = ACTIONS(970), - [sym_number_literal] = ACTIONS(972), - [anon_sym_L_SQUOTE] = ACTIONS(972), - [anon_sym_u_SQUOTE] = ACTIONS(972), - [anon_sym_U_SQUOTE] = ACTIONS(972), - [anon_sym_u8_SQUOTE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_L_DQUOTE] = ACTIONS(972), - [anon_sym_u_DQUOTE] = ACTIONS(972), - [anon_sym_U_DQUOTE] = ACTIONS(972), - [anon_sym_u8_DQUOTE] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_true] = ACTIONS(970), - [sym_false] = ACTIONS(970), - [sym_null] = ACTIONS(970), + [187] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(200), + [sym_attributed_statement] = STATE(200), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(200), + [sym_if_statement] = STATE(200), + [sym_switch_statement] = STATE(200), + [sym_case_statement] = STATE(200), + [sym_while_statement] = STATE(200), + [sym_do_statement] = STATE(200), + [sym_for_statement] = STATE(200), + [sym_return_statement] = STATE(200), + [sym_break_statement] = STATE(200), + [sym_continue_statement] = STATE(200), + [sym_goto_statement] = STATE(200), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), + [188] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(202), + [sym_attributed_statement] = STATE(202), + [sym_labeled_statement] = STATE(202), + [sym_expression_statement] = STATE(202), + [sym_if_statement] = STATE(202), + [sym_switch_statement] = STATE(202), + [sym_case_statement] = STATE(202), + [sym_while_statement] = STATE(202), + [sym_do_statement] = STATE(202), + [sym_for_statement] = STATE(202), + [sym_return_statement] = STATE(202), + [sym_break_statement] = STATE(202), + [sym_continue_statement] = STATE(202), + [sym_goto_statement] = STATE(202), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [189] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(1441), + [sym_attributed_statement] = STATE(1441), + [sym_labeled_statement] = STATE(1441), + [sym_expression_statement] = STATE(1441), + [sym_if_statement] = STATE(1441), + [sym_switch_statement] = STATE(1441), + [sym_case_statement] = STATE(1441), + [sym_while_statement] = STATE(1441), + [sym_do_statement] = STATE(1441), + [sym_for_statement] = STATE(1441), + [sym_return_statement] = STATE(1441), + [sym_break_statement] = STATE(1441), + [sym_continue_statement] = STATE(1441), + [sym_goto_statement] = STATE(1441), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [190] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(156), + [sym_attributed_statement] = STATE(156), + [sym_labeled_statement] = STATE(156), + [sym_expression_statement] = STATE(156), + [sym_if_statement] = STATE(156), + [sym_switch_statement] = STATE(156), + [sym_case_statement] = STATE(156), + [sym_while_statement] = STATE(156), + [sym_do_statement] = STATE(156), + [sym_for_statement] = STATE(156), + [sym_return_statement] = STATE(156), + [sym_break_statement] = STATE(156), + [sym_continue_statement] = STATE(156), + [sym_goto_statement] = STATE(156), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_if_token2] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [193] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(207), + [sym_attributed_statement] = STATE(207), + [sym_labeled_statement] = STATE(207), + [sym_expression_statement] = STATE(207), + [sym_if_statement] = STATE(207), + [sym_switch_statement] = STATE(207), + [sym_case_statement] = STATE(207), + [sym_while_statement] = STATE(207), + [sym_do_statement] = STATE(207), + [sym_for_statement] = STATE(207), + [sym_return_statement] = STATE(207), + [sym_break_statement] = STATE(207), + [sym_continue_statement] = STATE(207), + [sym_goto_statement] = STATE(207), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_if_token2] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), [anon_sym_typedef] = ACTIONS(910), [anon_sym_extern] = ACTIONS(910), [anon_sym___attribute__] = ACTIONS(910), @@ -34194,6 +32688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(912), [anon_sym_PLUS_PLUS] = ACTIONS(912), [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), [anon_sym__Generic] = ACTIONS(910), [sym_number_literal] = ACTIONS(912), [anon_sym_L_SQUOTE] = ACTIONS(912), @@ -34211,328 +32706,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1004), - [aux_sym_preproc_include_token1] = ACTIONS(1004), - [aux_sym_preproc_def_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token1] = ACTIONS(1004), - [aux_sym_preproc_if_token2] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), - [sym_preproc_directive] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym___attribute__] = ACTIONS(1004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), - [anon_sym___declspec] = ACTIONS(1004), - [anon_sym___cdecl] = ACTIONS(1004), - [anon_sym___clrcall] = ACTIONS(1004), - [anon_sym___stdcall] = ACTIONS(1004), - [anon_sym___fastcall] = ACTIONS(1004), - [anon_sym___thiscall] = ACTIONS(1004), - [anon_sym___vectorcall] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_auto] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_inline] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_volatile] = ACTIONS(1004), - [anon_sym_restrict] = ACTIONS(1004), - [anon_sym___restrict__] = ACTIONS(1004), - [anon_sym__Atomic] = ACTIONS(1004), - [anon_sym__Noreturn] = ACTIONS(1004), - [anon_sym_signed] = ACTIONS(1004), - [anon_sym_unsigned] = ACTIONS(1004), - [anon_sym_long] = ACTIONS(1004), - [anon_sym_short] = ACTIONS(1004), - [sym_primitive_type] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_switch] = ACTIONS(1004), - [anon_sym_case] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_goto] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1006), - [anon_sym_sizeof] = ACTIONS(1004), - [anon_sym__Generic] = ACTIONS(1004), - [sym_number_literal] = ACTIONS(1006), - [anon_sym_L_SQUOTE] = ACTIONS(1006), - [anon_sym_u_SQUOTE] = ACTIONS(1006), - [anon_sym_U_SQUOTE] = ACTIONS(1006), - [anon_sym_u8_SQUOTE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_L_DQUOTE] = ACTIONS(1006), - [anon_sym_u_DQUOTE] = ACTIONS(1006), - [anon_sym_U_DQUOTE] = ACTIONS(1006), - [anon_sym_u8_DQUOTE] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym_true] = ACTIONS(1004), - [sym_false] = ACTIONS(1004), - [sym_null] = ACTIONS(1004), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(994), - [aux_sym_preproc_include_token1] = ACTIONS(994), - [aux_sym_preproc_def_token1] = ACTIONS(994), - [aux_sym_preproc_if_token1] = ACTIONS(994), - [aux_sym_preproc_if_token2] = ACTIONS(994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(994), - [sym_preproc_directive] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_typedef] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym___attribute__] = ACTIONS(994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(996), - [anon_sym___declspec] = ACTIONS(994), - [anon_sym___cdecl] = ACTIONS(994), - [anon_sym___clrcall] = ACTIONS(994), - [anon_sym___stdcall] = ACTIONS(994), - [anon_sym___fastcall] = ACTIONS(994), - [anon_sym___thiscall] = ACTIONS(994), - [anon_sym___vectorcall] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_static] = ACTIONS(994), - [anon_sym_auto] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_volatile] = ACTIONS(994), - [anon_sym_restrict] = ACTIONS(994), - [anon_sym___restrict__] = ACTIONS(994), - [anon_sym__Atomic] = ACTIONS(994), - [anon_sym__Noreturn] = ACTIONS(994), - [anon_sym_signed] = ACTIONS(994), - [anon_sym_unsigned] = ACTIONS(994), - [anon_sym_long] = ACTIONS(994), - [anon_sym_short] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_switch] = ACTIONS(994), - [anon_sym_case] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_goto] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(996), - [anon_sym_sizeof] = ACTIONS(994), - [anon_sym__Generic] = ACTIONS(994), - [sym_number_literal] = ACTIONS(996), - [anon_sym_L_SQUOTE] = ACTIONS(996), - [anon_sym_u_SQUOTE] = ACTIONS(996), - [anon_sym_U_SQUOTE] = ACTIONS(996), - [anon_sym_u8_SQUOTE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_L_DQUOTE] = ACTIONS(996), - [anon_sym_u_DQUOTE] = ACTIONS(996), - [anon_sym_U_DQUOTE] = ACTIONS(996), - [anon_sym_u8_DQUOTE] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym_true] = ACTIONS(994), - [sym_false] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(910), - [aux_sym_preproc_def_token1] = ACTIONS(910), - [aux_sym_preproc_if_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(910), - [anon_sym_LPAREN2] = ACTIONS(912), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_typedef] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym___attribute__] = ACTIONS(910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(912), - [anon_sym___declspec] = ACTIONS(910), - [anon_sym___cdecl] = ACTIONS(910), - [anon_sym___clrcall] = ACTIONS(910), - [anon_sym___stdcall] = ACTIONS(910), - [anon_sym___fastcall] = ACTIONS(910), - [anon_sym___thiscall] = ACTIONS(910), - [anon_sym___vectorcall] = ACTIONS(910), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_static] = ACTIONS(910), - [anon_sym_auto] = ACTIONS(910), - [anon_sym_register] = ACTIONS(910), - [anon_sym_inline] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_volatile] = ACTIONS(910), - [anon_sym_restrict] = ACTIONS(910), - [anon_sym___restrict__] = ACTIONS(910), - [anon_sym__Atomic] = ACTIONS(910), - [anon_sym__Noreturn] = ACTIONS(910), - [anon_sym_signed] = ACTIONS(910), - [anon_sym_unsigned] = ACTIONS(910), - [anon_sym_long] = ACTIONS(910), - [anon_sym_short] = ACTIONS(910), - [sym_primitive_type] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(910), - [anon_sym_case] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_do] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_goto] = ACTIONS(910), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_sizeof] = ACTIONS(910), - [anon_sym__Generic] = ACTIONS(910), - [sym_number_literal] = ACTIONS(912), - [anon_sym_L_SQUOTE] = ACTIONS(912), - [anon_sym_u_SQUOTE] = ACTIONS(912), - [anon_sym_U_SQUOTE] = ACTIONS(912), - [anon_sym_u8_SQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [anon_sym_L_DQUOTE] = ACTIONS(912), - [anon_sym_u_DQUOTE] = ACTIONS(912), - [anon_sym_U_DQUOTE] = ACTIONS(912), - [anon_sym_u8_DQUOTE] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [sym_null] = ACTIONS(910), + [201] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(213), + [sym_attributed_statement] = STATE(213), + [sym_labeled_statement] = STATE(213), + [sym_expression_statement] = STATE(213), + [sym_if_statement] = STATE(213), + [sym_switch_statement] = STATE(213), + [sym_case_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_do_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_return_statement] = STATE(213), + [sym_break_statement] = STATE(213), + [sym_continue_statement] = STATE(213), + [sym_goto_statement] = STATE(213), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1012), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1012), - [aux_sym_preproc_if_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), - [sym_preproc_directive] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_typedef] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym___attribute__] = ACTIONS(1012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), - [anon_sym___declspec] = ACTIONS(1012), - [anon_sym___cdecl] = ACTIONS(1012), - [anon_sym___clrcall] = ACTIONS(1012), - [anon_sym___stdcall] = ACTIONS(1012), - [anon_sym___fastcall] = ACTIONS(1012), - [anon_sym___thiscall] = ACTIONS(1012), - [anon_sym___vectorcall] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_auto] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_inline] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_volatile] = ACTIONS(1012), - [anon_sym_restrict] = ACTIONS(1012), - [anon_sym___restrict__] = ACTIONS(1012), - [anon_sym__Atomic] = ACTIONS(1012), - [anon_sym__Noreturn] = ACTIONS(1012), - [anon_sym_signed] = ACTIONS(1012), - [anon_sym_unsigned] = ACTIONS(1012), - [anon_sym_long] = ACTIONS(1012), - [anon_sym_short] = ACTIONS(1012), - [sym_primitive_type] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_goto] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_sizeof] = ACTIONS(1012), - [anon_sym__Generic] = ACTIONS(1012), - [sym_number_literal] = ACTIONS(1014), - [anon_sym_L_SQUOTE] = ACTIONS(1014), - [anon_sym_u_SQUOTE] = ACTIONS(1014), - [anon_sym_U_SQUOTE] = ACTIONS(1014), - [anon_sym_u8_SQUOTE] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1014), - [anon_sym_L_DQUOTE] = ACTIONS(1014), - [anon_sym_u_DQUOTE] = ACTIONS(1014), - [anon_sym_U_DQUOTE] = ACTIONS(1014), - [anon_sym_u8_DQUOTE] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym_true] = ACTIONS(1012), - [sym_false] = ACTIONS(1012), - [sym_null] = ACTIONS(1012), + [202] = { + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), [sym_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1034), + [203] = { [sym_identifier] = ACTIONS(1032), [aux_sym_preproc_include_token1] = ACTIONS(1032), [aux_sym_preproc_def_token1] = ACTIONS(1032), [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token2] = ACTIONS(1032), [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), [sym_preproc_directive] = ACTIONS(1032), @@ -34589,6 +32928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1034), [anon_sym_PLUS_PLUS] = ACTIONS(1034), [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), [anon_sym__Generic] = ACTIONS(1032), [sym_number_literal] = ACTIONS(1034), [anon_sym_L_SQUOTE] = ACTIONS(1034), @@ -34606,517 +32946,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [228] = { - [sym_identifier] = ACTIONS(954), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), - [anon_sym_LPAREN2] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(956), - [anon_sym___declspec] = ACTIONS(954), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_signed] = ACTIONS(954), - [anon_sym_unsigned] = ACTIONS(954), - [anon_sym_long] = ACTIONS(954), - [anon_sym_short] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(954), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_goto] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(956), - [anon_sym_sizeof] = ACTIONS(954), - [anon_sym__Generic] = ACTIONS(954), - [sym_number_literal] = ACTIONS(956), - [anon_sym_L_SQUOTE] = ACTIONS(956), - [anon_sym_u_SQUOTE] = ACTIONS(956), - [anon_sym_U_SQUOTE] = ACTIONS(956), - [anon_sym_u8_SQUOTE] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(956), - [anon_sym_L_DQUOTE] = ACTIONS(956), - [anon_sym_u_DQUOTE] = ACTIONS(956), - [anon_sym_U_DQUOTE] = ACTIONS(956), - [anon_sym_u8_DQUOTE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_true] = ACTIONS(954), - [sym_false] = ACTIONS(954), - [sym_null] = ACTIONS(954), + [204] = { + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token2] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_identifier] = ACTIONS(998), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_typedef] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym___attribute__] = ACTIONS(998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1000), - [anon_sym___declspec] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(998), - [anon_sym_auto] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_inline] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_volatile] = ACTIONS(998), - [anon_sym_restrict] = ACTIONS(998), - [anon_sym___restrict__] = ACTIONS(998), - [anon_sym__Atomic] = ACTIONS(998), - [anon_sym__Noreturn] = ACTIONS(998), - [anon_sym_signed] = ACTIONS(998), - [anon_sym_unsigned] = ACTIONS(998), - [anon_sym_long] = ACTIONS(998), - [anon_sym_short] = ACTIONS(998), - [sym_primitive_type] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(998), - [anon_sym_struct] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_switch] = ACTIONS(998), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_sizeof] = ACTIONS(998), - [anon_sym__Generic] = ACTIONS(998), - [sym_number_literal] = ACTIONS(1000), - [anon_sym_L_SQUOTE] = ACTIONS(1000), - [anon_sym_u_SQUOTE] = ACTIONS(1000), - [anon_sym_U_SQUOTE] = ACTIONS(1000), - [anon_sym_u8_SQUOTE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_L_DQUOTE] = ACTIONS(1000), - [anon_sym_u_DQUOTE] = ACTIONS(1000), - [anon_sym_U_DQUOTE] = ACTIONS(1000), - [anon_sym_u8_DQUOTE] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym_true] = ACTIONS(998), - [sym_false] = ACTIONS(998), - [sym_null] = ACTIONS(998), + [205] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(126), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_case_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(920), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(918), - [anon_sym_extern] = ACTIONS(918), - [anon_sym___attribute__] = ACTIONS(918), - [anon_sym_LBRACK_LBRACK] = ACTIONS(920), - [anon_sym___declspec] = ACTIONS(918), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_static] = ACTIONS(918), - [anon_sym_auto] = ACTIONS(918), - [anon_sym_register] = ACTIONS(918), - [anon_sym_inline] = ACTIONS(918), - [anon_sym_const] = ACTIONS(918), - [anon_sym_volatile] = ACTIONS(918), - [anon_sym_restrict] = ACTIONS(918), - [anon_sym___restrict__] = ACTIONS(918), - [anon_sym__Atomic] = ACTIONS(918), - [anon_sym__Noreturn] = ACTIONS(918), - [anon_sym_signed] = ACTIONS(918), - [anon_sym_unsigned] = ACTIONS(918), - [anon_sym_long] = ACTIONS(918), - [anon_sym_short] = ACTIONS(918), - [sym_primitive_type] = ACTIONS(918), - [anon_sym_enum] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_union] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(918), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_return] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(918), - [anon_sym__Generic] = ACTIONS(918), - [sym_number_literal] = ACTIONS(920), - [anon_sym_L_SQUOTE] = ACTIONS(920), - [anon_sym_u_SQUOTE] = ACTIONS(920), - [anon_sym_U_SQUOTE] = ACTIONS(920), - [anon_sym_u8_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_L_DQUOTE] = ACTIONS(920), - [anon_sym_u_DQUOTE] = ACTIONS(920), - [anon_sym_U_DQUOTE] = ACTIONS(920), - [anon_sym_u8_DQUOTE] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_true] = ACTIONS(918), - [sym_false] = ACTIONS(918), - [sym_null] = ACTIONS(918), + [206] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(215), + [sym_attributed_statement] = STATE(215), + [sym_labeled_statement] = STATE(215), + [sym_expression_statement] = STATE(215), + [sym_if_statement] = STATE(215), + [sym_switch_statement] = STATE(215), + [sym_case_statement] = STATE(215), + [sym_while_statement] = STATE(215), + [sym_do_statement] = STATE(215), + [sym_for_statement] = STATE(215), + [sym_return_statement] = STATE(215), + [sym_break_statement] = STATE(215), + [sym_continue_statement] = STATE(215), + [sym_goto_statement] = STATE(215), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(942), - [aux_sym_preproc_include_token1] = ACTIONS(942), - [aux_sym_preproc_def_token1] = ACTIONS(942), - [aux_sym_preproc_if_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(942), - [sym_preproc_directive] = ACTIONS(942), - [anon_sym_LPAREN2] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym___attribute__] = ACTIONS(942), - [anon_sym_LBRACK_LBRACK] = ACTIONS(944), - [anon_sym___declspec] = ACTIONS(942), - [anon_sym___cdecl] = ACTIONS(942), - [anon_sym___clrcall] = ACTIONS(942), - [anon_sym___stdcall] = ACTIONS(942), - [anon_sym___fastcall] = ACTIONS(942), - [anon_sym___thiscall] = ACTIONS(942), - [anon_sym___vectorcall] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_static] = ACTIONS(942), - [anon_sym_auto] = ACTIONS(942), - [anon_sym_register] = ACTIONS(942), - [anon_sym_inline] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_volatile] = ACTIONS(942), - [anon_sym_restrict] = ACTIONS(942), - [anon_sym___restrict__] = ACTIONS(942), - [anon_sym__Atomic] = ACTIONS(942), - [anon_sym__Noreturn] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(942), - [anon_sym_unsigned] = ACTIONS(942), - [anon_sym_long] = ACTIONS(942), - [anon_sym_short] = ACTIONS(942), - [sym_primitive_type] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(942), - [anon_sym_case] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(944), - [anon_sym_sizeof] = ACTIONS(942), - [anon_sym__Generic] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(944), - [anon_sym_u_DQUOTE] = ACTIONS(944), - [anon_sym_U_DQUOTE] = ACTIONS(944), - [anon_sym_u8_DQUOTE] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym_true] = ACTIONS(942), - [sym_false] = ACTIONS(942), - [sym_null] = ACTIONS(942), + [207] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token2] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(964), - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(962), - [aux_sym_preproc_def_token1] = ACTIONS(962), - [aux_sym_preproc_if_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(962), - [sym_preproc_directive] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym___attribute__] = ACTIONS(962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(964), - [anon_sym___declspec] = ACTIONS(962), - [anon_sym___cdecl] = ACTIONS(962), - [anon_sym___clrcall] = ACTIONS(962), - [anon_sym___stdcall] = ACTIONS(962), - [anon_sym___fastcall] = ACTIONS(962), - [anon_sym___thiscall] = ACTIONS(962), - [anon_sym___vectorcall] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_volatile] = ACTIONS(962), - [anon_sym_restrict] = ACTIONS(962), - [anon_sym___restrict__] = ACTIONS(962), - [anon_sym__Atomic] = ACTIONS(962), - [anon_sym__Noreturn] = ACTIONS(962), - [anon_sym_signed] = ACTIONS(962), - [anon_sym_unsigned] = ACTIONS(962), - [anon_sym_long] = ACTIONS(962), - [anon_sym_short] = ACTIONS(962), - [sym_primitive_type] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(962), - [anon_sym_case] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_goto] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(964), - [anon_sym_sizeof] = ACTIONS(962), - [anon_sym__Generic] = ACTIONS(962), - [sym_number_literal] = ACTIONS(964), - [anon_sym_L_SQUOTE] = ACTIONS(964), - [anon_sym_u_SQUOTE] = ACTIONS(964), - [anon_sym_U_SQUOTE] = ACTIONS(964), - [anon_sym_u8_SQUOTE] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(964), - [anon_sym_L_DQUOTE] = ACTIONS(964), - [anon_sym_u_DQUOTE] = ACTIONS(964), - [anon_sym_U_DQUOTE] = ACTIONS(964), - [anon_sym_u8_DQUOTE] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_true] = ACTIONS(962), - [sym_false] = ACTIONS(962), - [sym_null] = ACTIONS(962), + [208] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token2] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(934), - [aux_sym_preproc_include_token1] = ACTIONS(934), - [aux_sym_preproc_def_token1] = ACTIONS(934), - [aux_sym_preproc_if_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(934), - [sym_preproc_directive] = ACTIONS(934), - [anon_sym_LPAREN2] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym___attribute__] = ACTIONS(934), - [anon_sym_LBRACK_LBRACK] = ACTIONS(936), - [anon_sym___declspec] = ACTIONS(934), - [anon_sym___cdecl] = ACTIONS(934), - [anon_sym___clrcall] = ACTIONS(934), - [anon_sym___stdcall] = ACTIONS(934), - [anon_sym___fastcall] = ACTIONS(934), - [anon_sym___thiscall] = ACTIONS(934), - [anon_sym___vectorcall] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_static] = ACTIONS(934), - [anon_sym_auto] = ACTIONS(934), - [anon_sym_register] = ACTIONS(934), - [anon_sym_inline] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_volatile] = ACTIONS(934), - [anon_sym_restrict] = ACTIONS(934), - [anon_sym___restrict__] = ACTIONS(934), - [anon_sym__Atomic] = ACTIONS(934), - [anon_sym__Noreturn] = ACTIONS(934), - [anon_sym_signed] = ACTIONS(934), - [anon_sym_unsigned] = ACTIONS(934), - [anon_sym_long] = ACTIONS(934), - [anon_sym_short] = ACTIONS(934), - [sym_primitive_type] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_switch] = ACTIONS(934), - [anon_sym_case] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_do] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(936), - [anon_sym_sizeof] = ACTIONS(934), - [anon_sym__Generic] = ACTIONS(934), - [sym_number_literal] = ACTIONS(936), - [anon_sym_L_SQUOTE] = ACTIONS(936), - [anon_sym_u_SQUOTE] = ACTIONS(936), - [anon_sym_U_SQUOTE] = ACTIONS(936), - [anon_sym_u8_SQUOTE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_L_DQUOTE] = ACTIONS(936), - [anon_sym_u_DQUOTE] = ACTIONS(936), - [anon_sym_U_DQUOTE] = ACTIONS(936), - [anon_sym_u8_DQUOTE] = ACTIONS(936), - [anon_sym_DQUOTE] = ACTIONS(936), - [sym_true] = ACTIONS(934), - [sym_false] = ACTIONS(934), - [sym_null] = ACTIONS(934), + [209] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(127), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_case_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(202), - [sym_attributed_statement] = STATE(202), - [sym_labeled_statement] = STATE(202), - [sym_expression_statement] = STATE(202), - [sym_if_statement] = STATE(202), - [sym_switch_statement] = STATE(202), - [sym_case_statement] = STATE(202), - [sym_while_statement] = STATE(202), - [sym_do_statement] = STATE(202), - [sym_for_statement] = STATE(202), - [sym_return_statement] = STATE(202), - [sym_break_statement] = STATE(202), - [sym_continue_statement] = STATE(202), - [sym_goto_statement] = STATE(202), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [210] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(224), + [sym_attributed_statement] = STATE(224), + [sym_labeled_statement] = STATE(224), + [sym_expression_statement] = STATE(224), + [sym_if_statement] = STATE(224), + [sym_switch_statement] = STATE(224), + [sym_case_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_do_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_return_statement] = STATE(224), + [sym_break_statement] = STATE(224), + [sym_continue_statement] = STATE(224), + [sym_goto_statement] = STATE(224), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35125,7 +33472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -35141,137 +33488,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token2] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [211] = { + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(76), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_case_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), + [212] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(221), + [sym_attributed_statement] = STATE(221), + [sym_labeled_statement] = STATE(221), + [sym_expression_statement] = STATE(221), + [sym_if_statement] = STATE(221), + [sym_switch_statement] = STATE(221), + [sym_case_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_do_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_return_statement] = STATE(221), + [sym_break_statement] = STATE(221), + [sym_continue_statement] = STATE(221), + [sym_goto_statement] = STATE(221), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35280,155 +33631,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym___restrict__] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym__Noreturn] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym__Generic] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [213] = { + [ts_builtin_sym_end] = ACTIONS(958), + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(149), - [sym_attributed_statement] = STATE(149), - [sym_labeled_statement] = STATE(149), - [sym_expression_statement] = STATE(149), - [sym_if_statement] = STATE(149), - [sym_switch_statement] = STATE(149), - [sym_case_statement] = STATE(149), - [sym_while_statement] = STATE(149), - [sym_do_statement] = STATE(149), - [sym_for_statement] = STATE(149), - [sym_return_statement] = STATE(149), - [sym_break_statement] = STATE(149), - [sym_continue_statement] = STATE(149), - [sym_goto_statement] = STATE(149), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), + [214] = { + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(954), + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [216] = { + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token2] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(227), + [sym_attributed_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35436,154 +34111,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [239] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token2] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [219] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1285), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(84), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_case_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), + [220] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35592,77 +34271,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(134), - [sym_attributed_statement] = STATE(134), - [sym_labeled_statement] = STATE(134), - [sym_expression_statement] = STATE(134), - [sym_if_statement] = STATE(134), - [sym_switch_statement] = STATE(134), - [sym_case_statement] = STATE(134), - [sym_while_statement] = STATE(134), - [sym_do_statement] = STATE(134), - [sym_for_statement] = STATE(134), - [sym_return_statement] = STATE(134), - [sym_break_statement] = STATE(134), - [sym_continue_statement] = STATE(134), - [sym_goto_statement] = STATE(134), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), + [221] = { + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_if_token2] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(237), + [sym_attributed_statement] = STATE(237), + [sym_labeled_statement] = STATE(237), + [sym_expression_statement] = STATE(237), + [sym_if_statement] = STATE(237), + [sym_switch_statement] = STATE(237), + [sym_case_statement] = STATE(237), + [sym_while_statement] = STATE(237), + [sym_do_statement] = STATE(237), + [sym_for_statement] = STATE(237), + [sym_return_statement] = STATE(237), + [sym_break_statement] = STATE(237), + [sym_continue_statement] = STATE(237), + [sym_goto_statement] = STATE(237), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35670,77 +34431,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(1469), - [sym_attributed_statement] = STATE(1469), - [sym_labeled_statement] = STATE(1469), - [sym_expression_statement] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_switch_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_do_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_return_statement] = STATE(1469), - [sym_break_statement] = STATE(1469), - [sym_continue_statement] = STATE(1469), - [sym_goto_statement] = STATE(1469), + [223] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(238), + [sym_attributed_statement] = STATE(238), + [sym_labeled_statement] = STATE(238), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_switch_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(238), + [sym_for_statement] = STATE(238), + [sym_return_statement] = STATE(238), + [sym_break_statement] = STATE(238), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(238), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(950), + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(75), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_case_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(288), + [sym_attributed_statement] = STATE(288), + [sym_labeled_statement] = STATE(288), + [sym_expression_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_switch_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_do_statement] = STATE(288), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(288), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(288), + [sym_goto_statement] = STATE(288), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_if_token2] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [sym_attribute_declaration] = STATE(155), + [sym_compound_statement] = STATE(154), + [sym_attributed_statement] = STATE(154), + [sym_labeled_statement] = STATE(154), + [sym_expression_statement] = STATE(154), + [sym_if_statement] = STATE(154), + [sym_switch_statement] = STATE(154), + [sym_case_statement] = STATE(154), + [sym_while_statement] = STATE(154), + [sym_do_statement] = STATE(154), + [sym_for_statement] = STATE(154), + [sym_return_statement] = STATE(154), + [sym_break_statement] = STATE(154), + [sym_continue_statement] = STATE(154), + [sym_goto_statement] = STATE(154), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35749,7 +34912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -35765,60 +34928,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_attribute_declaration] = STATE(278), - [sym_compound_statement] = STATE(68), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(278), - [sym_identifier] = ACTIONS(1142), + [229] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(72), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35826,545 +34991,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym___restrict__] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym__Noreturn] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [anon_sym__Generic] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token2] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym___restrict__] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym__Noreturn] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [anon_sym__Generic] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [230] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_if_token2] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token2] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym___restrict__] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym__Noreturn] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [anon_sym__Generic] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [231] = { + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [248] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token2] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [232] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym___restrict__] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym__Noreturn] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [anon_sym__Generic] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [233] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_if_token2] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(89), - [sym_attributed_statement] = STATE(89), - [sym_labeled_statement] = STATE(89), - [sym_expression_statement] = STATE(89), - [sym_if_statement] = STATE(89), - [sym_switch_statement] = STATE(89), - [sym_case_statement] = STATE(89), - [sym_while_statement] = STATE(89), - [sym_do_statement] = STATE(89), - [sym_for_statement] = STATE(89), - [sym_return_statement] = STATE(89), - [sym_break_statement] = STATE(89), - [sym_continue_statement] = STATE(89), - [sym_goto_statement] = STATE(89), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), + [234] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(70), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36372,77 +35391,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [235] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(300), + [sym_attributed_statement] = STATE(300), + [sym_labeled_statement] = STATE(300), + [sym_expression_statement] = STATE(300), + [sym_if_statement] = STATE(300), + [sym_switch_statement] = STATE(300), + [sym_case_statement] = STATE(300), + [sym_while_statement] = STATE(300), + [sym_do_statement] = STATE(300), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(300), + [sym_break_statement] = STATE(300), + [sym_continue_statement] = STATE(300), + [sym_goto_statement] = STATE(300), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36450,77 +35471,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), + [236] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(924), + [aux_sym_preproc_def_token1] = ACTIONS(924), + [aux_sym_preproc_if_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(924), + [sym_preproc_directive] = ACTIONS(924), + [anon_sym_LPAREN2] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_typedef] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym___attribute__] = ACTIONS(924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(926), + [anon_sym___declspec] = ACTIONS(924), + [anon_sym___cdecl] = ACTIONS(924), + [anon_sym___clrcall] = ACTIONS(924), + [anon_sym___stdcall] = ACTIONS(924), + [anon_sym___fastcall] = ACTIONS(924), + [anon_sym___thiscall] = ACTIONS(924), + [anon_sym___vectorcall] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_static] = ACTIONS(924), + [anon_sym_auto] = ACTIONS(924), + [anon_sym_register] = ACTIONS(924), + [anon_sym_inline] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_restrict] = ACTIONS(924), + [anon_sym___restrict__] = ACTIONS(924), + [anon_sym__Atomic] = ACTIONS(924), + [anon_sym__Noreturn] = ACTIONS(924), + [anon_sym_signed] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [sym_primitive_type] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(924), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(924), + [anon_sym_offsetof] = ACTIONS(924), + [anon_sym__Generic] = ACTIONS(924), + [sym_number_literal] = ACTIONS(926), + [anon_sym_L_SQUOTE] = ACTIONS(926), + [anon_sym_u_SQUOTE] = ACTIONS(926), + [anon_sym_U_SQUOTE] = ACTIONS(926), + [anon_sym_u8_SQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_L_DQUOTE] = ACTIONS(926), + [anon_sym_u_DQUOTE] = ACTIONS(926), + [anon_sym_U_DQUOTE] = ACTIONS(926), + [anon_sym_u8_DQUOTE] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_null] = ACTIONS(924), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_if_token2] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_if_token2] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym___restrict__] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym__Noreturn] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), + [anon_sym__Generic] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(92), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1398), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36528,76 +35791,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_if] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(125), + [anon_sym_default] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_return] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_goto] = ACTIONS(141), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(200), - [sym_attributed_statement] = STATE(200), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_switch_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_do_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_return_statement] = STATE(200), - [sym_break_statement] = STATE(200), - [sym_continue_statement] = STATE(200), - [sym_goto_statement] = STATE(200), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), + [240] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(266), + [sym_attributed_statement] = STATE(266), + [sym_labeled_statement] = STATE(266), + [sym_expression_statement] = STATE(266), + [sym_if_statement] = STATE(266), + [sym_switch_statement] = STATE(266), + [sym_case_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_do_statement] = STATE(266), + [sym_for_statement] = STATE(266), + [sym_return_statement] = STATE(266), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(266), + [sym_goto_statement] = STATE(266), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36606,155 +35871,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token2] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym___restrict__] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym__Noreturn] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [anon_sym__Generic] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [241] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(296), + [sym_attributed_statement] = STATE(296), + [sym_labeled_statement] = STATE(296), + [sym_expression_statement] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_switch_statement] = STATE(296), + [sym_case_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_do_statement] = STATE(296), + [sym_for_statement] = STATE(296), + [sym_return_statement] = STATE(296), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(296), + [sym_goto_statement] = STATE(296), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(72), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_case_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), + [242] = { + [ts_builtin_sym_end] = ACTIONS(930), + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(934), + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_labeled_statement] = STATE(244), + [sym_expression_statement] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_switch_statement] = STATE(244), + [sym_case_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_return_statement] = STATE(244), + [sym_break_statement] = STATE(244), + [sym_continue_statement] = STATE(244), + [sym_goto_statement] = STATE(244), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36762,77 +36271,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_attribute_declaration] = STATE(269), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(1144), + [246] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + }, + [247] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + }, + [248] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(246), + [sym_attributed_statement] = STATE(246), + [sym_labeled_statement] = STATE(246), + [sym_expression_statement] = STATE(246), + [sym_if_statement] = STATE(246), + [sym_switch_statement] = STATE(246), + [sym_case_statement] = STATE(246), + [sym_while_statement] = STATE(246), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(246), + [sym_return_statement] = STATE(246), + [sym_break_statement] = STATE(246), + [sym_continue_statement] = STATE(246), + [sym_goto_statement] = STATE(246), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36840,77 +36671,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), + [251] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(247), + [sym_labeled_statement] = STATE(247), + [sym_expression_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_switch_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_return_statement] = STATE(247), + [sym_break_statement] = STATE(247), + [sym_continue_statement] = STATE(247), + [sym_goto_statement] = STATE(247), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36918,155 +36751,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym___restrict__] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym__Noreturn] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym__Generic] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [252] = { + [ts_builtin_sym_end] = ACTIONS(938), + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(88), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), + [253] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(248), + [sym_attributed_statement] = STATE(248), + [sym_labeled_statement] = STATE(248), + [sym_expression_statement] = STATE(248), + [sym_if_statement] = STATE(248), + [sym_switch_statement] = STATE(248), + [sym_case_statement] = STATE(248), + [sym_while_statement] = STATE(248), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(248), + [sym_return_statement] = STATE(248), + [sym_break_statement] = STATE(248), + [sym_continue_statement] = STATE(248), + [sym_goto_statement] = STATE(248), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(910), + [aux_sym_preproc_def_token1] = ACTIONS(910), + [aux_sym_preproc_if_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token1] = ACTIONS(910), + [aux_sym_preproc_ifdef_token2] = ACTIONS(910), + [sym_preproc_directive] = ACTIONS(910), + [anon_sym_LPAREN2] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym___attribute__] = ACTIONS(910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(912), + [anon_sym___declspec] = ACTIONS(910), + [anon_sym___cdecl] = ACTIONS(910), + [anon_sym___clrcall] = ACTIONS(910), + [anon_sym___stdcall] = ACTIONS(910), + [anon_sym___fastcall] = ACTIONS(910), + [anon_sym___thiscall] = ACTIONS(910), + [anon_sym___vectorcall] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_static] = ACTIONS(910), + [anon_sym_auto] = ACTIONS(910), + [anon_sym_register] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_restrict] = ACTIONS(910), + [anon_sym___restrict__] = ACTIONS(910), + [anon_sym__Atomic] = ACTIONS(910), + [anon_sym__Noreturn] = ACTIONS(910), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [sym_primitive_type] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_goto] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(912), + [anon_sym_sizeof] = ACTIONS(910), + [anon_sym_offsetof] = ACTIONS(910), + [anon_sym__Generic] = ACTIONS(910), + [sym_number_literal] = ACTIONS(912), + [anon_sym_L_SQUOTE] = ACTIONS(912), + [anon_sym_u_SQUOTE] = ACTIONS(912), + [anon_sym_U_SQUOTE] = ACTIONS(912), + [anon_sym_u8_SQUOTE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_L_DQUOTE] = ACTIONS(912), + [anon_sym_u_DQUOTE] = ACTIONS(912), + [anon_sym_U_DQUOTE] = ACTIONS(912), + [anon_sym_u8_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_null] = ACTIONS(910), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [sym_identifier] = ACTIONS(976), + [aux_sym_preproc_include_token1] = ACTIONS(976), + [aux_sym_preproc_def_token1] = ACTIONS(976), + [aux_sym_preproc_if_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym___attribute__] = ACTIONS(976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(978), + [anon_sym___declspec] = ACTIONS(976), + [anon_sym___cdecl] = ACTIONS(976), + [anon_sym___clrcall] = ACTIONS(976), + [anon_sym___stdcall] = ACTIONS(976), + [anon_sym___fastcall] = ACTIONS(976), + [anon_sym___thiscall] = ACTIONS(976), + [anon_sym___vectorcall] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym___restrict__] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym__Noreturn] = ACTIONS(976), + [anon_sym_signed] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_sizeof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(976), + [anon_sym__Generic] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + }, + [257] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(249), + [sym_attributed_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_case_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_goto_statement] = STATE(249), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37074,77 +37231,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_identifier] = ACTIONS(988), + [aux_sym_preproc_include_token1] = ACTIONS(988), + [aux_sym_preproc_def_token1] = ACTIONS(988), + [aux_sym_preproc_if_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(988), + [anon_sym_LPAREN2] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym___attribute__] = ACTIONS(988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(990), + [anon_sym___declspec] = ACTIONS(988), + [anon_sym___cdecl] = ACTIONS(988), + [anon_sym___clrcall] = ACTIONS(988), + [anon_sym___stdcall] = ACTIONS(988), + [anon_sym___fastcall] = ACTIONS(988), + [anon_sym___thiscall] = ACTIONS(988), + [anon_sym___vectorcall] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_static] = ACTIONS(988), + [anon_sym_auto] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_restrict] = ACTIONS(988), + [anon_sym___restrict__] = ACTIONS(988), + [anon_sym__Atomic] = ACTIONS(988), + [anon_sym__Noreturn] = ACTIONS(988), + [anon_sym_signed] = ACTIONS(988), + [anon_sym_unsigned] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [sym_primitive_type] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(988), + [anon_sym_case] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_goto] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_sizeof] = ACTIONS(988), + [anon_sym_offsetof] = ACTIONS(988), + [anon_sym__Generic] = ACTIONS(988), + [sym_number_literal] = ACTIONS(990), + [anon_sym_L_SQUOTE] = ACTIONS(990), + [anon_sym_u_SQUOTE] = ACTIONS(990), + [anon_sym_U_SQUOTE] = ACTIONS(990), + [anon_sym_u8_SQUOTE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_L_DQUOTE] = ACTIONS(990), + [anon_sym_u_DQUOTE] = ACTIONS(990), + [anon_sym_U_DQUOTE] = ACTIONS(990), + [anon_sym_u8_DQUOTE] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_null] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + }, + [259] = { + [sym_identifier] = ACTIONS(992), + [aux_sym_preproc_include_token1] = ACTIONS(992), + [aux_sym_preproc_def_token1] = ACTIONS(992), + [aux_sym_preproc_if_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(992), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym___attribute__] = ACTIONS(992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(994), + [anon_sym___declspec] = ACTIONS(992), + [anon_sym___cdecl] = ACTIONS(992), + [anon_sym___clrcall] = ACTIONS(992), + [anon_sym___stdcall] = ACTIONS(992), + [anon_sym___fastcall] = ACTIONS(992), + [anon_sym___thiscall] = ACTIONS(992), + [anon_sym___vectorcall] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_static] = ACTIONS(992), + [anon_sym_auto] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_inline] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_restrict] = ACTIONS(992), + [anon_sym___restrict__] = ACTIONS(992), + [anon_sym__Atomic] = ACTIONS(992), + [anon_sym__Noreturn] = ACTIONS(992), + [anon_sym_signed] = ACTIONS(992), + [anon_sym_unsigned] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [sym_primitive_type] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(992), + [anon_sym_case] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_goto] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_sizeof] = ACTIONS(992), + [anon_sym_offsetof] = ACTIONS(992), + [anon_sym__Generic] = ACTIONS(992), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(994), + [anon_sym_u_SQUOTE] = ACTIONS(994), + [anon_sym_U_SQUOTE] = ACTIONS(994), + [anon_sym_u8_SQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_L_DQUOTE] = ACTIONS(994), + [anon_sym_u_DQUOTE] = ACTIONS(994), + [anon_sym_U_DQUOTE] = ACTIONS(994), + [anon_sym_u8_DQUOTE] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_comment] = ACTIONS(3), }, [260] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(74), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(253), + [sym_attributed_statement] = STATE(253), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37152,77 +37471,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [261] = { - [sym_attribute_declaration] = STATE(362), - [sym_compound_statement] = STATE(139), - [sym_attributed_statement] = STATE(139), - [sym_labeled_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [sym_if_statement] = STATE(139), - [sym_switch_statement] = STATE(139), - [sym_case_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1146), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37230,77 +37551,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [262] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(256), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(256), + [sym_expression_statement] = STATE(256), + [sym_if_statement] = STATE(256), + [sym_switch_statement] = STATE(256), + [sym_case_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_do_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_return_statement] = STATE(256), + [sym_break_statement] = STATE(256), + [sym_continue_statement] = STATE(256), + [sym_goto_statement] = STATE(256), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37308,155 +37631,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1084), - [aux_sym_preproc_include_token1] = ACTIONS(1084), - [aux_sym_preproc_def_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), - [sym_preproc_directive] = ACTIONS(1084), - [anon_sym_LPAREN2] = ACTIONS(1086), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_typedef] = ACTIONS(1084), - [anon_sym_extern] = ACTIONS(1084), - [anon_sym___attribute__] = ACTIONS(1084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), - [anon_sym___declspec] = ACTIONS(1084), - [anon_sym___cdecl] = ACTIONS(1084), - [anon_sym___clrcall] = ACTIONS(1084), - [anon_sym___stdcall] = ACTIONS(1084), - [anon_sym___fastcall] = ACTIONS(1084), - [anon_sym___thiscall] = ACTIONS(1084), - [anon_sym___vectorcall] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_static] = ACTIONS(1084), - [anon_sym_auto] = ACTIONS(1084), - [anon_sym_register] = ACTIONS(1084), - [anon_sym_inline] = ACTIONS(1084), - [anon_sym_const] = ACTIONS(1084), - [anon_sym_volatile] = ACTIONS(1084), - [anon_sym_restrict] = ACTIONS(1084), - [anon_sym___restrict__] = ACTIONS(1084), - [anon_sym__Atomic] = ACTIONS(1084), - [anon_sym__Noreturn] = ACTIONS(1084), - [anon_sym_signed] = ACTIONS(1084), - [anon_sym_unsigned] = ACTIONS(1084), - [anon_sym_long] = ACTIONS(1084), - [anon_sym_short] = ACTIONS(1084), - [sym_primitive_type] = ACTIONS(1084), - [anon_sym_enum] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_union] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_switch] = ACTIONS(1084), - [anon_sym_case] = ACTIONS(1084), - [anon_sym_default] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_do] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_goto] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1086), - [anon_sym_sizeof] = ACTIONS(1084), - [anon_sym__Generic] = ACTIONS(1084), - [sym_number_literal] = ACTIONS(1086), - [anon_sym_L_SQUOTE] = ACTIONS(1086), - [anon_sym_u_SQUOTE] = ACTIONS(1086), - [anon_sym_U_SQUOTE] = ACTIONS(1086), - [anon_sym_u8_SQUOTE] = ACTIONS(1086), - [anon_sym_SQUOTE] = ACTIONS(1086), - [anon_sym_L_DQUOTE] = ACTIONS(1086), - [anon_sym_u_DQUOTE] = ACTIONS(1086), - [anon_sym_U_DQUOTE] = ACTIONS(1086), - [anon_sym_u8_DQUOTE] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_true] = ACTIONS(1084), - [sym_false] = ACTIONS(1084), - [sym_null] = ACTIONS(1084), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [264] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(193), - [sym_attributed_statement] = STATE(193), - [sym_labeled_statement] = STATE(193), - [sym_expression_statement] = STATE(193), - [sym_if_statement] = STATE(193), - [sym_switch_statement] = STATE(193), - [sym_case_statement] = STATE(193), - [sym_while_statement] = STATE(193), - [sym_do_statement] = STATE(193), - [sym_for_statement] = STATE(193), - [sym_return_statement] = STATE(193), - [sym_break_statement] = STATE(193), - [sym_continue_statement] = STATE(193), - [sym_goto_statement] = STATE(193), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(233), + [sym_attributed_statement] = STATE(233), + [sym_labeled_statement] = STATE(233), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_switch_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_do_statement] = STATE(233), + [sym_for_statement] = STATE(233), + [sym_return_statement] = STATE(233), + [sym_break_statement] = STATE(233), + [sym_continue_statement] = STATE(233), + [sym_goto_statement] = STATE(233), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37464,233 +37791,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [265] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(1478), - [sym_attributed_statement] = STATE(1478), - [sym_labeled_statement] = STATE(1478), - [sym_expression_statement] = STATE(1478), - [sym_if_statement] = STATE(1478), - [sym_switch_statement] = STATE(1478), - [sym_case_statement] = STATE(1478), - [sym_while_statement] = STATE(1478), - [sym_do_statement] = STATE(1478), - [sym_for_statement] = STATE(1478), - [sym_return_statement] = STATE(1478), - [sym_break_statement] = STATE(1478), - [sym_continue_statement] = STATE(1478), - [sym_goto_statement] = STATE(1478), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [sym_identifier] = ACTIONS(996), + [aux_sym_preproc_include_token1] = ACTIONS(996), + [aux_sym_preproc_def_token1] = ACTIONS(996), + [aux_sym_preproc_if_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(996), + [sym_preproc_directive] = ACTIONS(996), + [anon_sym_LPAREN2] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym___attribute__] = ACTIONS(996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(998), + [anon_sym___declspec] = ACTIONS(996), + [anon_sym___cdecl] = ACTIONS(996), + [anon_sym___clrcall] = ACTIONS(996), + [anon_sym___stdcall] = ACTIONS(996), + [anon_sym___fastcall] = ACTIONS(996), + [anon_sym___thiscall] = ACTIONS(996), + [anon_sym___vectorcall] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_static] = ACTIONS(996), + [anon_sym_auto] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_inline] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_restrict] = ACTIONS(996), + [anon_sym___restrict__] = ACTIONS(996), + [anon_sym__Atomic] = ACTIONS(996), + [anon_sym__Noreturn] = ACTIONS(996), + [anon_sym_signed] = ACTIONS(996), + [anon_sym_unsigned] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [sym_primitive_type] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_goto] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_sizeof] = ACTIONS(996), + [anon_sym_offsetof] = ACTIONS(996), + [anon_sym__Generic] = ACTIONS(996), + [sym_number_literal] = ACTIONS(998), + [anon_sym_L_SQUOTE] = ACTIONS(998), + [anon_sym_u_SQUOTE] = ACTIONS(998), + [anon_sym_U_SQUOTE] = ACTIONS(998), + [anon_sym_u8_SQUOTE] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(998), + [anon_sym_L_DQUOTE] = ACTIONS(998), + [anon_sym_u_DQUOTE] = ACTIONS(998), + [anon_sym_U_DQUOTE] = ACTIONS(998), + [anon_sym_u8_DQUOTE] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), [sym_comment] = ACTIONS(3), }, [266] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [ts_builtin_sym_end] = ACTIONS(946), + [sym_identifier] = ACTIONS(944), + [aux_sym_preproc_include_token1] = ACTIONS(944), + [aux_sym_preproc_def_token1] = ACTIONS(944), + [aux_sym_preproc_if_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(944), + [sym_preproc_directive] = ACTIONS(944), + [anon_sym_LPAREN2] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(944), + [anon_sym___attribute__] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [anon_sym___declspec] = ACTIONS(944), + [anon_sym___cdecl] = ACTIONS(944), + [anon_sym___clrcall] = ACTIONS(944), + [anon_sym___stdcall] = ACTIONS(944), + [anon_sym___fastcall] = ACTIONS(944), + [anon_sym___thiscall] = ACTIONS(944), + [anon_sym___vectorcall] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_static] = ACTIONS(944), + [anon_sym_auto] = ACTIONS(944), + [anon_sym_register] = ACTIONS(944), + [anon_sym_inline] = ACTIONS(944), + [anon_sym_const] = ACTIONS(944), + [anon_sym_volatile] = ACTIONS(944), + [anon_sym_restrict] = ACTIONS(944), + [anon_sym___restrict__] = ACTIONS(944), + [anon_sym__Atomic] = ACTIONS(944), + [anon_sym__Noreturn] = ACTIONS(944), + [anon_sym_signed] = ACTIONS(944), + [anon_sym_unsigned] = ACTIONS(944), + [anon_sym_long] = ACTIONS(944), + [anon_sym_short] = ACTIONS(944), + [sym_primitive_type] = ACTIONS(944), + [anon_sym_enum] = ACTIONS(944), + [anon_sym_struct] = ACTIONS(944), + [anon_sym_union] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(944), + [anon_sym_default] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_break] = ACTIONS(944), + [anon_sym_continue] = ACTIONS(944), + [anon_sym_goto] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(946), + [anon_sym_PLUS_PLUS] = ACTIONS(946), + [anon_sym_sizeof] = ACTIONS(944), + [anon_sym_offsetof] = ACTIONS(944), + [anon_sym__Generic] = ACTIONS(944), + [sym_number_literal] = ACTIONS(946), + [anon_sym_L_SQUOTE] = ACTIONS(946), + [anon_sym_u_SQUOTE] = ACTIONS(946), + [anon_sym_U_SQUOTE] = ACTIONS(946), + [anon_sym_u8_SQUOTE] = ACTIONS(946), + [anon_sym_SQUOTE] = ACTIONS(946), + [anon_sym_L_DQUOTE] = ACTIONS(946), + [anon_sym_u_DQUOTE] = ACTIONS(946), + [anon_sym_U_DQUOTE] = ACTIONS(946), + [anon_sym_u8_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym_true] = ACTIONS(944), + [sym_false] = ACTIONS(944), + [sym_null] = ACTIONS(944), [sym_comment] = ACTIONS(3), }, [267] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(210), - [sym_attributed_statement] = STATE(210), - [sym_labeled_statement] = STATE(210), - [sym_expression_statement] = STATE(210), - [sym_if_statement] = STATE(210), - [sym_switch_statement] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_while_statement] = STATE(210), - [sym_do_statement] = STATE(210), - [sym_for_statement] = STATE(210), - [sym_return_statement] = STATE(210), - [sym_break_statement] = STATE(210), - [sym_continue_statement] = STATE(210), - [sym_goto_statement] = STATE(210), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(258), + [sym_attributed_statement] = STATE(258), + [sym_labeled_statement] = STATE(258), + [sym_expression_statement] = STATE(258), + [sym_if_statement] = STATE(258), + [sym_switch_statement] = STATE(258), + [sym_case_statement] = STATE(258), + [sym_while_statement] = STATE(258), + [sym_do_statement] = STATE(258), + [sym_for_statement] = STATE(258), + [sym_return_statement] = STATE(258), + [sym_break_statement] = STATE(258), + [sym_continue_statement] = STATE(258), + [sym_goto_statement] = STATE(258), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37698,77 +38031,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [268] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(232), - [sym_attributed_statement] = STATE(232), - [sym_labeled_statement] = STATE(232), - [sym_expression_statement] = STATE(232), - [sym_if_statement] = STATE(232), - [sym_switch_statement] = STATE(232), - [sym_case_statement] = STATE(232), - [sym_while_statement] = STATE(232), - [sym_do_statement] = STATE(232), - [sym_for_statement] = STATE(232), - [sym_return_statement] = STATE(232), - [sym_break_statement] = STATE(232), - [sym_continue_statement] = STATE(232), - [sym_goto_statement] = STATE(232), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(259), + [sym_attributed_statement] = STATE(259), + [sym_labeled_statement] = STATE(259), + [sym_expression_statement] = STATE(259), + [sym_if_statement] = STATE(259), + [sym_switch_statement] = STATE(259), + [sym_case_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_do_statement] = STATE(259), + [sym_for_statement] = STATE(259), + [sym_return_statement] = STATE(259), + [sym_break_statement] = STATE(259), + [sym_continue_statement] = STATE(259), + [sym_goto_statement] = STATE(259), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37776,467 +38111,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [269] = { - [sym_attribute_declaration] = STATE(269), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(1148), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_switch] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1202), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1008), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), + [anon_sym_LPAREN2] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_typedef] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym___attribute__] = ACTIONS(1008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1010), + [anon_sym___declspec] = ACTIONS(1008), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_auto] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_inline] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_restrict] = ACTIONS(1008), + [anon_sym___restrict__] = ACTIONS(1008), + [anon_sym__Atomic] = ACTIONS(1008), + [anon_sym__Noreturn] = ACTIONS(1008), + [anon_sym_signed] = ACTIONS(1008), + [anon_sym_unsigned] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [sym_primitive_type] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_goto] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1008), + [anon_sym__Generic] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym___restrict__] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym__Noreturn] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [anon_sym__Generic] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [ts_builtin_sym_end] = ACTIONS(942), + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, [271] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(87), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_case_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(1012), + [aux_sym_preproc_def_token1] = ACTIONS(1012), + [aux_sym_preproc_if_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1012), + [sym_preproc_directive] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(1014), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_typedef] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym___attribute__] = ACTIONS(1012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1014), + [anon_sym___declspec] = ACTIONS(1012), + [anon_sym___cdecl] = ACTIONS(1012), + [anon_sym___clrcall] = ACTIONS(1012), + [anon_sym___stdcall] = ACTIONS(1012), + [anon_sym___fastcall] = ACTIONS(1012), + [anon_sym___thiscall] = ACTIONS(1012), + [anon_sym___vectorcall] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_auto] = ACTIONS(1012), + [anon_sym_register] = ACTIONS(1012), + [anon_sym_inline] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_restrict] = ACTIONS(1012), + [anon_sym___restrict__] = ACTIONS(1012), + [anon_sym__Atomic] = ACTIONS(1012), + [anon_sym__Noreturn] = ACTIONS(1012), + [anon_sym_signed] = ACTIONS(1012), + [anon_sym_unsigned] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [sym_primitive_type] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_goto] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_sizeof] = ACTIONS(1012), + [anon_sym_offsetof] = ACTIONS(1012), + [anon_sym__Generic] = ACTIONS(1012), + [sym_number_literal] = ACTIONS(1014), + [anon_sym_L_SQUOTE] = ACTIONS(1014), + [anon_sym_u_SQUOTE] = ACTIONS(1014), + [anon_sym_U_SQUOTE] = ACTIONS(1014), + [anon_sym_u8_SQUOTE] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1014), + [anon_sym_L_DQUOTE] = ACTIONS(1014), + [anon_sym_u_DQUOTE] = ACTIONS(1014), + [anon_sym_U_DQUOTE] = ACTIONS(1014), + [anon_sym_u8_DQUOTE] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), [sym_comment] = ACTIONS(3), }, [272] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(221), - [sym_attributed_statement] = STATE(221), - [sym_labeled_statement] = STATE(221), - [sym_expression_statement] = STATE(221), - [sym_if_statement] = STATE(221), - [sym_switch_statement] = STATE(221), - [sym_case_statement] = STATE(221), - [sym_while_statement] = STATE(221), - [sym_do_statement] = STATE(221), - [sym_for_statement] = STATE(221), - [sym_return_statement] = STATE(221), - [sym_break_statement] = STATE(221), - [sym_continue_statement] = STATE(221), - [sym_goto_statement] = STATE(221), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [sym_identifier] = ACTIONS(984), + [aux_sym_preproc_include_token1] = ACTIONS(984), + [aux_sym_preproc_def_token1] = ACTIONS(984), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(984), + [sym_preproc_directive] = ACTIONS(984), + [anon_sym_LPAREN2] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym___attribute__] = ACTIONS(984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(986), + [anon_sym___declspec] = ACTIONS(984), + [anon_sym___cdecl] = ACTIONS(984), + [anon_sym___clrcall] = ACTIONS(984), + [anon_sym___stdcall] = ACTIONS(984), + [anon_sym___fastcall] = ACTIONS(984), + [anon_sym___thiscall] = ACTIONS(984), + [anon_sym___vectorcall] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_static] = ACTIONS(984), + [anon_sym_auto] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_inline] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_signed] = ACTIONS(984), + [anon_sym_unsigned] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_case] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_goto] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_sizeof] = ACTIONS(984), + [anon_sym_offsetof] = ACTIONS(984), + [anon_sym__Generic] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [273] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token2] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(185), - [sym_attributed_statement] = STATE(185), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(185), - [sym_if_statement] = STATE(185), - [sym_switch_statement] = STATE(185), - [sym_case_statement] = STATE(185), - [sym_while_statement] = STATE(185), - [sym_do_statement] = STATE(185), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(185), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(185), - [sym_goto_statement] = STATE(185), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(265), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(265), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(265), + [sym_switch_statement] = STATE(265), + [sym_case_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_do_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_return_statement] = STATE(265), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(265), + [sym_goto_statement] = STATE(265), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38244,77 +38511,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(184), - [sym_attributed_statement] = STATE(184), - [sym_labeled_statement] = STATE(184), - [sym_expression_statement] = STATE(184), - [sym_if_statement] = STATE(184), - [sym_switch_statement] = STATE(184), - [sym_case_statement] = STATE(184), - [sym_while_statement] = STATE(184), - [sym_do_statement] = STATE(184), - [sym_for_statement] = STATE(184), - [sym_return_statement] = STATE(184), - [sym_break_statement] = STATE(184), - [sym_continue_statement] = STATE(184), - [sym_goto_statement] = STATE(184), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [274] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(269), + [sym_attributed_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_break_statement] = STATE(269), + [sym_continue_statement] = STATE(269), + [sym_goto_statement] = STATE(269), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38322,467 +38591,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(183), - [sym_attributed_statement] = STATE(183), - [sym_labeled_statement] = STATE(183), - [sym_expression_statement] = STATE(183), - [sym_if_statement] = STATE(183), - [sym_switch_statement] = STATE(183), - [sym_case_statement] = STATE(183), - [sym_while_statement] = STATE(183), - [sym_do_statement] = STATE(183), - [sym_for_statement] = STATE(183), - [sym_return_statement] = STATE(183), - [sym_break_statement] = STATE(183), - [sym_continue_statement] = STATE(183), - [sym_goto_statement] = STATE(183), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [275] = { + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_LPAREN2] = ACTIONS(1018), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1016), + [anon_sym_extern] = ACTIONS(1016), + [anon_sym___attribute__] = ACTIONS(1016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1018), + [anon_sym___declspec] = ACTIONS(1016), + [anon_sym___cdecl] = ACTIONS(1016), + [anon_sym___clrcall] = ACTIONS(1016), + [anon_sym___stdcall] = ACTIONS(1016), + [anon_sym___fastcall] = ACTIONS(1016), + [anon_sym___thiscall] = ACTIONS(1016), + [anon_sym___vectorcall] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_auto] = ACTIONS(1016), + [anon_sym_register] = ACTIONS(1016), + [anon_sym_inline] = ACTIONS(1016), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_restrict] = ACTIONS(1016), + [anon_sym___restrict__] = ACTIONS(1016), + [anon_sym__Atomic] = ACTIONS(1016), + [anon_sym__Noreturn] = ACTIONS(1016), + [anon_sym_signed] = ACTIONS(1016), + [anon_sym_unsigned] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [sym_primitive_type] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_struct] = ACTIONS(1016), + [anon_sym_union] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_goto] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_sizeof] = ACTIONS(1016), + [anon_sym_offsetof] = ACTIONS(1016), + [anon_sym__Generic] = ACTIONS(1016), + [sym_number_literal] = ACTIONS(1018), + [anon_sym_L_SQUOTE] = ACTIONS(1018), + [anon_sym_u_SQUOTE] = ACTIONS(1018), + [anon_sym_U_SQUOTE] = ACTIONS(1018), + [anon_sym_u8_SQUOTE] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(1018), + [anon_sym_L_DQUOTE] = ACTIONS(1018), + [anon_sym_u_DQUOTE] = ACTIONS(1018), + [anon_sym_U_DQUOTE] = ACTIONS(1018), + [anon_sym_u8_DQUOTE] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_null] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(1020), + [aux_sym_preproc_include_token1] = ACTIONS(1020), + [aux_sym_preproc_def_token1] = ACTIONS(1020), + [aux_sym_preproc_if_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1020), + [sym_preproc_directive] = ACTIONS(1020), + [anon_sym_LPAREN2] = ACTIONS(1022), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_typedef] = ACTIONS(1020), + [anon_sym_extern] = ACTIONS(1020), + [anon_sym___attribute__] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1022), + [anon_sym___declspec] = ACTIONS(1020), + [anon_sym___cdecl] = ACTIONS(1020), + [anon_sym___clrcall] = ACTIONS(1020), + [anon_sym___stdcall] = ACTIONS(1020), + [anon_sym___fastcall] = ACTIONS(1020), + [anon_sym___thiscall] = ACTIONS(1020), + [anon_sym___vectorcall] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_auto] = ACTIONS(1020), + [anon_sym_register] = ACTIONS(1020), + [anon_sym_inline] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_restrict] = ACTIONS(1020), + [anon_sym___restrict__] = ACTIONS(1020), + [anon_sym__Atomic] = ACTIONS(1020), + [anon_sym__Noreturn] = ACTIONS(1020), + [anon_sym_signed] = ACTIONS(1020), + [anon_sym_unsigned] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [sym_primitive_type] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_sizeof] = ACTIONS(1020), + [anon_sym_offsetof] = ACTIONS(1020), + [anon_sym__Generic] = ACTIONS(1020), + [sym_number_literal] = ACTIONS(1022), + [anon_sym_L_SQUOTE] = ACTIONS(1022), + [anon_sym_u_SQUOTE] = ACTIONS(1022), + [anon_sym_U_SQUOTE] = ACTIONS(1022), + [anon_sym_u8_SQUOTE] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_L_DQUOTE] = ACTIONS(1022), + [anon_sym_u_DQUOTE] = ACTIONS(1022), + [anon_sym_U_DQUOTE] = ACTIONS(1022), + [anon_sym_u8_DQUOTE] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, [277] = { - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, [278] = { - [sym_attribute_declaration] = STATE(278), - [sym_compound_statement] = STATE(68), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(278), - [sym_identifier] = ACTIONS(1226), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1024), + [aux_sym_preproc_include_token1] = ACTIONS(1024), + [aux_sym_preproc_def_token1] = ACTIONS(1024), + [aux_sym_preproc_if_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1024), + [sym_preproc_directive] = ACTIONS(1024), + [anon_sym_LPAREN2] = ACTIONS(1026), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_typedef] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1024), + [anon_sym___attribute__] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1026), + [anon_sym___declspec] = ACTIONS(1024), + [anon_sym___cdecl] = ACTIONS(1024), + [anon_sym___clrcall] = ACTIONS(1024), + [anon_sym___stdcall] = ACTIONS(1024), + [anon_sym___fastcall] = ACTIONS(1024), + [anon_sym___thiscall] = ACTIONS(1024), + [anon_sym___vectorcall] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_auto] = ACTIONS(1024), + [anon_sym_register] = ACTIONS(1024), + [anon_sym_inline] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_restrict] = ACTIONS(1024), + [anon_sym___restrict__] = ACTIONS(1024), + [anon_sym__Atomic] = ACTIONS(1024), + [anon_sym__Noreturn] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(1024), + [anon_sym_unsigned] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [sym_primitive_type] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_sizeof] = ACTIONS(1024), + [anon_sym_offsetof] = ACTIONS(1024), + [anon_sym__Generic] = ACTIONS(1024), + [sym_number_literal] = ACTIONS(1026), + [anon_sym_L_SQUOTE] = ACTIONS(1026), + [anon_sym_u_SQUOTE] = ACTIONS(1026), + [anon_sym_U_SQUOTE] = ACTIONS(1026), + [anon_sym_u8_SQUOTE] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1026), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_null] = ACTIONS(1024), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(158), - [sym_attributed_statement] = STATE(158), - [sym_labeled_statement] = STATE(158), - [sym_expression_statement] = STATE(158), - [sym_if_statement] = STATE(158), - [sym_switch_statement] = STATE(158), - [sym_case_statement] = STATE(158), - [sym_while_statement] = STATE(158), - [sym_do_statement] = STATE(158), - [sym_for_statement] = STATE(158), - [sym_return_statement] = STATE(158), - [sym_break_statement] = STATE(158), - [sym_continue_statement] = STATE(158), - [sym_goto_statement] = STATE(158), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [sym_identifier] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(1032), + [aux_sym_preproc_def_token1] = ACTIONS(1032), + [aux_sym_preproc_if_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1032), + [sym_preproc_directive] = ACTIONS(1032), + [anon_sym_LPAREN2] = ACTIONS(1034), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_typedef] = ACTIONS(1032), + [anon_sym_extern] = ACTIONS(1032), + [anon_sym___attribute__] = ACTIONS(1032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1034), + [anon_sym___declspec] = ACTIONS(1032), + [anon_sym___cdecl] = ACTIONS(1032), + [anon_sym___clrcall] = ACTIONS(1032), + [anon_sym___stdcall] = ACTIONS(1032), + [anon_sym___fastcall] = ACTIONS(1032), + [anon_sym___thiscall] = ACTIONS(1032), + [anon_sym___vectorcall] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_auto] = ACTIONS(1032), + [anon_sym_register] = ACTIONS(1032), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_restrict] = ACTIONS(1032), + [anon_sym___restrict__] = ACTIONS(1032), + [anon_sym__Atomic] = ACTIONS(1032), + [anon_sym__Noreturn] = ACTIONS(1032), + [anon_sym_signed] = ACTIONS(1032), + [anon_sym_unsigned] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [sym_primitive_type] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_goto] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_sizeof] = ACTIONS(1032), + [anon_sym_offsetof] = ACTIONS(1032), + [anon_sym__Generic] = ACTIONS(1032), + [sym_number_literal] = ACTIONS(1034), + [anon_sym_L_SQUOTE] = ACTIONS(1034), + [anon_sym_u_SQUOTE] = ACTIONS(1034), + [anon_sym_U_SQUOTE] = ACTIONS(1034), + [anon_sym_u8_SQUOTE] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1034), + [anon_sym_L_DQUOTE] = ACTIONS(1034), + [anon_sym_u_DQUOTE] = ACTIONS(1034), + [anon_sym_U_DQUOTE] = ACTIONS(1034), + [anon_sym_u8_DQUOTE] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_null] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, [280] = { - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token2] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym___restrict__] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym__Noreturn] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym__Generic] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - }, - [281] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(163), - [sym_attributed_statement] = STATE(163), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [sym_attribute_declaration] = STATE(298), + [sym_compound_statement] = STATE(297), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(297), + [sym_expression_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_switch_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(297), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(297), + [sym_goto_statement] = STATE(297), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(298), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38790,155 +39071,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(1108), - [aux_sym_preproc_def_token1] = ACTIONS(1108), - [aux_sym_preproc_if_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), - [sym_preproc_directive] = ACTIONS(1108), - [anon_sym_LPAREN2] = ACTIONS(1110), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_TILDE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1110), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_typedef] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym___attribute__] = ACTIONS(1108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), - [anon_sym___declspec] = ACTIONS(1108), - [anon_sym___cdecl] = ACTIONS(1108), - [anon_sym___clrcall] = ACTIONS(1108), - [anon_sym___stdcall] = ACTIONS(1108), - [anon_sym___fastcall] = ACTIONS(1108), - [anon_sym___thiscall] = ACTIONS(1108), - [anon_sym___vectorcall] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_auto] = ACTIONS(1108), - [anon_sym_register] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_const] = ACTIONS(1108), - [anon_sym_volatile] = ACTIONS(1108), - [anon_sym_restrict] = ACTIONS(1108), - [anon_sym___restrict__] = ACTIONS(1108), - [anon_sym__Atomic] = ACTIONS(1108), - [anon_sym__Noreturn] = ACTIONS(1108), - [anon_sym_signed] = ACTIONS(1108), - [anon_sym_unsigned] = ACTIONS(1108), - [anon_sym_long] = ACTIONS(1108), - [anon_sym_short] = ACTIONS(1108), - [sym_primitive_type] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_struct] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1108), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_switch] = ACTIONS(1108), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(1110), - [anon_sym_PLUS_PLUS] = ACTIONS(1110), - [anon_sym_sizeof] = ACTIONS(1108), - [anon_sym__Generic] = ACTIONS(1108), - [sym_number_literal] = ACTIONS(1110), - [anon_sym_L_SQUOTE] = ACTIONS(1110), - [anon_sym_u_SQUOTE] = ACTIONS(1110), - [anon_sym_U_SQUOTE] = ACTIONS(1110), - [anon_sym_u8_SQUOTE] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_L_DQUOTE] = ACTIONS(1110), - [anon_sym_u_DQUOTE] = ACTIONS(1110), - [anon_sym_U_DQUOTE] = ACTIONS(1110), - [anon_sym_u8_DQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_true] = ACTIONS(1108), - [sym_false] = ACTIONS(1108), - [sym_null] = ACTIONS(1108), + [281] = { + [sym_identifier] = ACTIONS(1028), + [aux_sym_preproc_include_token1] = ACTIONS(1028), + [aux_sym_preproc_def_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), + [sym_preproc_directive] = ACTIONS(1028), + [anon_sym_LPAREN2] = ACTIONS(1030), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_typedef] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym___attribute__] = ACTIONS(1028), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym___declspec] = ACTIONS(1028), + [anon_sym___cdecl] = ACTIONS(1028), + [anon_sym___clrcall] = ACTIONS(1028), + [anon_sym___stdcall] = ACTIONS(1028), + [anon_sym___fastcall] = ACTIONS(1028), + [anon_sym___thiscall] = ACTIONS(1028), + [anon_sym___vectorcall] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_auto] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_inline] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_restrict] = ACTIONS(1028), + [anon_sym___restrict__] = ACTIONS(1028), + [anon_sym__Atomic] = ACTIONS(1028), + [anon_sym__Noreturn] = ACTIONS(1028), + [anon_sym_signed] = ACTIONS(1028), + [anon_sym_unsigned] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [sym_primitive_type] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_sizeof] = ACTIONS(1028), + [anon_sym_offsetof] = ACTIONS(1028), + [anon_sym__Generic] = ACTIONS(1028), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1030), + [anon_sym_u_SQUOTE] = ACTIONS(1030), + [anon_sym_U_SQUOTE] = ACTIONS(1030), + [anon_sym_u8_SQUOTE] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1030), + [anon_sym_L_DQUOTE] = ACTIONS(1030), + [anon_sym_u_DQUOTE] = ACTIONS(1030), + [anon_sym_U_DQUOTE] = ACTIONS(1030), + [anon_sym_u8_DQUOTE] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_null] = ACTIONS(1028), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(147), - [sym_attributed_statement] = STATE(147), - [sym_labeled_statement] = STATE(147), - [sym_expression_statement] = STATE(147), - [sym_if_statement] = STATE(147), - [sym_switch_statement] = STATE(147), - [sym_case_statement] = STATE(147), - [sym_while_statement] = STATE(147), - [sym_do_statement] = STATE(147), - [sym_for_statement] = STATE(147), - [sym_return_statement] = STATE(147), - [sym_break_statement] = STATE(147), - [sym_continue_statement] = STATE(147), - [sym_goto_statement] = STATE(147), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [282] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38946,155 +39231,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token2] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym___restrict__] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym__Noreturn] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym__Generic] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [283] = { + [sym_identifier] = ACTIONS(948), + [aux_sym_preproc_include_token1] = ACTIONS(948), + [aux_sym_preproc_def_token1] = ACTIONS(948), + [aux_sym_preproc_if_token1] = ACTIONS(948), + [aux_sym_preproc_if_token2] = ACTIONS(948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(948), + [sym_preproc_directive] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym___attribute__] = ACTIONS(948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym___declspec] = ACTIONS(948), + [anon_sym___cdecl] = ACTIONS(948), + [anon_sym___clrcall] = ACTIONS(948), + [anon_sym___stdcall] = ACTIONS(948), + [anon_sym___fastcall] = ACTIONS(948), + [anon_sym___thiscall] = ACTIONS(948), + [anon_sym___vectorcall] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_static] = ACTIONS(948), + [anon_sym_auto] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_inline] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_volatile] = ACTIONS(948), + [anon_sym_restrict] = ACTIONS(948), + [anon_sym___restrict__] = ACTIONS(948), + [anon_sym__Atomic] = ACTIONS(948), + [anon_sym__Noreturn] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(948), + [anon_sym_unsigned] = ACTIONS(948), + [anon_sym_long] = ACTIONS(948), + [anon_sym_short] = ACTIONS(948), + [sym_primitive_type] = ACTIONS(948), + [anon_sym_enum] = ACTIONS(948), + [anon_sym_struct] = ACTIONS(948), + [anon_sym_union] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(948), + [anon_sym_default] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_goto] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_PLUS_PLUS] = ACTIONS(950), + [anon_sym_sizeof] = ACTIONS(948), + [anon_sym_offsetof] = ACTIONS(948), + [anon_sym__Generic] = ACTIONS(948), + [sym_number_literal] = ACTIONS(950), + [anon_sym_L_SQUOTE] = ACTIONS(950), + [anon_sym_u_SQUOTE] = ACTIONS(950), + [anon_sym_U_SQUOTE] = ACTIONS(950), + [anon_sym_u8_SQUOTE] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_L_DQUOTE] = ACTIONS(950), + [anon_sym_u_DQUOTE] = ACTIONS(950), + [anon_sym_U_DQUOTE] = ACTIONS(950), + [anon_sym_u8_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym_true] = ACTIONS(948), + [sym_false] = ACTIONS(948), + [sym_null] = ACTIONS(948), [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [284] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(217), + [sym_attributed_statement] = STATE(217), + [sym_labeled_statement] = STATE(217), + [sym_expression_statement] = STATE(217), + [sym_if_statement] = STATE(217), + [sym_switch_statement] = STATE(217), + [sym_case_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_do_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_return_statement] = STATE(217), + [sym_break_statement] = STATE(217), + [sym_continue_statement] = STATE(217), + [sym_goto_statement] = STATE(217), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39102,77 +39391,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), [sym_comment] = ACTIONS(3), }, [286] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(1457), - [sym_attributed_statement] = STATE(1457), - [sym_labeled_statement] = STATE(1457), - [sym_expression_statement] = STATE(1457), - [sym_if_statement] = STATE(1457), - [sym_switch_statement] = STATE(1457), - [sym_case_statement] = STATE(1457), - [sym_while_statement] = STATE(1457), - [sym_do_statement] = STATE(1457), - [sym_for_statement] = STATE(1457), - [sym_return_statement] = STATE(1457), - [sym_break_statement] = STATE(1457), - [sym_continue_statement] = STATE(1457), - [sym_goto_statement] = STATE(1457), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), + [sym_identifier] = ACTIONS(906), + [aux_sym_preproc_include_token1] = ACTIONS(906), + [aux_sym_preproc_def_token1] = ACTIONS(906), + [aux_sym_preproc_if_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token1] = ACTIONS(906), + [aux_sym_preproc_ifdef_token2] = ACTIONS(906), + [sym_preproc_directive] = ACTIONS(906), + [anon_sym_LPAREN2] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym___attribute__] = ACTIONS(906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(908), + [anon_sym___declspec] = ACTIONS(906), + [anon_sym___cdecl] = ACTIONS(906), + [anon_sym___clrcall] = ACTIONS(906), + [anon_sym___stdcall] = ACTIONS(906), + [anon_sym___fastcall] = ACTIONS(906), + [anon_sym___thiscall] = ACTIONS(906), + [anon_sym___vectorcall] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_static] = ACTIONS(906), + [anon_sym_auto] = ACTIONS(906), + [anon_sym_register] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_const] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_restrict] = ACTIONS(906), + [anon_sym___restrict__] = ACTIONS(906), + [anon_sym__Atomic] = ACTIONS(906), + [anon_sym__Noreturn] = ACTIONS(906), + [anon_sym_signed] = ACTIONS(906), + [anon_sym_unsigned] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [sym_primitive_type] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_struct] = ACTIONS(906), + [anon_sym_union] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_goto] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_sizeof] = ACTIONS(906), + [anon_sym_offsetof] = ACTIONS(906), + [anon_sym__Generic] = ACTIONS(906), + [sym_number_literal] = ACTIONS(908), + [anon_sym_L_SQUOTE] = ACTIONS(908), + [anon_sym_u_SQUOTE] = ACTIONS(908), + [anon_sym_U_SQUOTE] = ACTIONS(908), + [anon_sym_u8_SQUOTE] = ACTIONS(908), + [anon_sym_SQUOTE] = ACTIONS(908), + [anon_sym_L_DQUOTE] = ACTIONS(908), + [anon_sym_u_DQUOTE] = ACTIONS(908), + [anon_sym_U_DQUOTE] = ACTIONS(908), + [anon_sym_u8_DQUOTE] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_null] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [sym_identifier] = ACTIONS(972), + [aux_sym_preproc_include_token1] = ACTIONS(972), + [aux_sym_preproc_def_token1] = ACTIONS(972), + [aux_sym_preproc_if_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(972), + [sym_preproc_directive] = ACTIONS(972), + [anon_sym_LPAREN2] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym___attribute__] = ACTIONS(972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(974), + [anon_sym___declspec] = ACTIONS(972), + [anon_sym___cdecl] = ACTIONS(972), + [anon_sym___clrcall] = ACTIONS(972), + [anon_sym___stdcall] = ACTIONS(972), + [anon_sym___fastcall] = ACTIONS(972), + [anon_sym___thiscall] = ACTIONS(972), + [anon_sym___vectorcall] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_static] = ACTIONS(972), + [anon_sym_auto] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_volatile] = ACTIONS(972), + [anon_sym_restrict] = ACTIONS(972), + [anon_sym___restrict__] = ACTIONS(972), + [anon_sym__Atomic] = ACTIONS(972), + [anon_sym__Noreturn] = ACTIONS(972), + [anon_sym_signed] = ACTIONS(972), + [anon_sym_unsigned] = ACTIONS(972), + [anon_sym_long] = ACTIONS(972), + [anon_sym_short] = ACTIONS(972), + [sym_primitive_type] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_goto] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(972), + [anon_sym_offsetof] = ACTIONS(972), + [anon_sym__Generic] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [sym_identifier] = ACTIONS(968), + [aux_sym_preproc_include_token1] = ACTIONS(968), + [aux_sym_preproc_def_token1] = ACTIONS(968), + [aux_sym_preproc_if_token1] = ACTIONS(968), + [aux_sym_preproc_if_token2] = ACTIONS(968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym___attribute__] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(970), + [anon_sym___declspec] = ACTIONS(968), + [anon_sym___cdecl] = ACTIONS(968), + [anon_sym___clrcall] = ACTIONS(968), + [anon_sym___stdcall] = ACTIONS(968), + [anon_sym___fastcall] = ACTIONS(968), + [anon_sym___thiscall] = ACTIONS(968), + [anon_sym___vectorcall] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym___restrict__] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym__Noreturn] = ACTIONS(968), + [anon_sym_signed] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(968), + [anon_sym_offsetof] = ACTIONS(968), + [anon_sym__Generic] = ACTIONS(968), + [sym_number_literal] = ACTIONS(970), + [anon_sym_L_SQUOTE] = ACTIONS(970), + [anon_sym_u_SQUOTE] = ACTIONS(970), + [anon_sym_U_SQUOTE] = ACTIONS(970), + [anon_sym_u8_SQUOTE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_L_DQUOTE] = ACTIONS(970), + [anon_sym_u_DQUOTE] = ACTIONS(970), + [anon_sym_U_DQUOTE] = ACTIONS(970), + [anon_sym_u8_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(1040), + [aux_sym_preproc_def_token1] = ACTIONS(1040), + [aux_sym_preproc_if_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), + [sym_preproc_directive] = ACTIONS(1040), + [anon_sym_LPAREN2] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_typedef] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym___attribute__] = ACTIONS(1040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), + [anon_sym___declspec] = ACTIONS(1040), + [anon_sym___cdecl] = ACTIONS(1040), + [anon_sym___clrcall] = ACTIONS(1040), + [anon_sym___stdcall] = ACTIONS(1040), + [anon_sym___fastcall] = ACTIONS(1040), + [anon_sym___thiscall] = ACTIONS(1040), + [anon_sym___vectorcall] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_auto] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_inline] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_volatile] = ACTIONS(1040), + [anon_sym_restrict] = ACTIONS(1040), + [anon_sym___restrict__] = ACTIONS(1040), + [anon_sym__Atomic] = ACTIONS(1040), + [anon_sym__Noreturn] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(1040), + [anon_sym_unsigned] = ACTIONS(1040), + [anon_sym_long] = ACTIONS(1040), + [anon_sym_short] = ACTIONS(1040), + [sym_primitive_type] = ACTIONS(1040), + [anon_sym_enum] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1040), + [anon_sym_union] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_switch] = ACTIONS(1040), + [anon_sym_case] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_PLUS_PLUS] = ACTIONS(1042), + [anon_sym_sizeof] = ACTIONS(1040), + [anon_sym_offsetof] = ACTIONS(1040), + [anon_sym__Generic] = ACTIONS(1040), + [sym_number_literal] = ACTIONS(1042), + [anon_sym_L_SQUOTE] = ACTIONS(1042), + [anon_sym_u_SQUOTE] = ACTIONS(1042), + [anon_sym_U_SQUOTE] = ACTIONS(1042), + [anon_sym_u8_SQUOTE] = ACTIONS(1042), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_L_DQUOTE] = ACTIONS(1042), + [anon_sym_u_DQUOTE] = ACTIONS(1042), + [anon_sym_U_DQUOTE] = ACTIONS(1042), + [anon_sym_u8_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(276), + [sym_attributed_statement] = STATE(276), + [sym_labeled_statement] = STATE(276), + [sym_expression_statement] = STATE(276), + [sym_if_statement] = STATE(276), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(276), + [sym_while_statement] = STATE(276), + [sym_do_statement] = STATE(276), + [sym_for_statement] = STATE(276), + [sym_return_statement] = STATE(276), + [sym_break_statement] = STATE(276), + [sym_continue_statement] = STATE(276), + [sym_goto_statement] = STATE(276), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39180,233 +39871,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token2] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym___restrict__] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym__Noreturn] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [anon_sym__Generic] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), + [291] = { + [sym_identifier] = ACTIONS(1036), + [aux_sym_preproc_include_token1] = ACTIONS(1036), + [aux_sym_preproc_def_token1] = ACTIONS(1036), + [aux_sym_preproc_if_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), + [sym_preproc_directive] = ACTIONS(1036), + [anon_sym_LPAREN2] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_TILDE] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1038), + [anon_sym_typedef] = ACTIONS(1036), + [anon_sym_extern] = ACTIONS(1036), + [anon_sym___attribute__] = ACTIONS(1036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), + [anon_sym___declspec] = ACTIONS(1036), + [anon_sym___cdecl] = ACTIONS(1036), + [anon_sym___clrcall] = ACTIONS(1036), + [anon_sym___stdcall] = ACTIONS(1036), + [anon_sym___fastcall] = ACTIONS(1036), + [anon_sym___thiscall] = ACTIONS(1036), + [anon_sym___vectorcall] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_auto] = ACTIONS(1036), + [anon_sym_register] = ACTIONS(1036), + [anon_sym_inline] = ACTIONS(1036), + [anon_sym_const] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_restrict] = ACTIONS(1036), + [anon_sym___restrict__] = ACTIONS(1036), + [anon_sym__Atomic] = ACTIONS(1036), + [anon_sym__Noreturn] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(1036), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1038), + [anon_sym_PLUS_PLUS] = ACTIONS(1038), + [anon_sym_sizeof] = ACTIONS(1036), + [anon_sym_offsetof] = ACTIONS(1036), + [anon_sym__Generic] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1038), + [anon_sym_L_SQUOTE] = ACTIONS(1038), + [anon_sym_u_SQUOTE] = ACTIONS(1038), + [anon_sym_U_SQUOTE] = ACTIONS(1038), + [anon_sym_u8_SQUOTE] = ACTIONS(1038), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_L_DQUOTE] = ACTIONS(1038), + [anon_sym_u_DQUOTE] = ACTIONS(1038), + [anon_sym_U_DQUOTE] = ACTIONS(1038), + [anon_sym_u8_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [sym_labeled_statement] = STATE(176), - [sym_expression_statement] = STATE(176), - [sym_if_statement] = STATE(176), - [sym_switch_statement] = STATE(176), - [sym_case_statement] = STATE(176), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(176), - [sym_continue_statement] = STATE(176), - [sym_goto_statement] = STATE(176), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [292] = { + [sym_identifier] = ACTIONS(952), + [aux_sym_preproc_include_token1] = ACTIONS(952), + [aux_sym_preproc_def_token1] = ACTIONS(952), + [aux_sym_preproc_if_token1] = ACTIONS(952), + [aux_sym_preproc_if_token2] = ACTIONS(952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(952), + [sym_preproc_directive] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym___attribute__] = ACTIONS(952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(954), + [anon_sym___declspec] = ACTIONS(952), + [anon_sym___cdecl] = ACTIONS(952), + [anon_sym___clrcall] = ACTIONS(952), + [anon_sym___stdcall] = ACTIONS(952), + [anon_sym___fastcall] = ACTIONS(952), + [anon_sym___thiscall] = ACTIONS(952), + [anon_sym___vectorcall] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_static] = ACTIONS(952), + [anon_sym_auto] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_inline] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_volatile] = ACTIONS(952), + [anon_sym_restrict] = ACTIONS(952), + [anon_sym___restrict__] = ACTIONS(952), + [anon_sym__Atomic] = ACTIONS(952), + [anon_sym__Noreturn] = ACTIONS(952), + [anon_sym_signed] = ACTIONS(952), + [anon_sym_unsigned] = ACTIONS(952), + [anon_sym_long] = ACTIONS(952), + [anon_sym_short] = ACTIONS(952), + [sym_primitive_type] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(952), + [anon_sym_struct] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(952), + [anon_sym_case] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_goto] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_PLUS_PLUS] = ACTIONS(954), + [anon_sym_sizeof] = ACTIONS(952), + [anon_sym_offsetof] = ACTIONS(952), + [anon_sym__Generic] = ACTIONS(952), + [sym_number_literal] = ACTIONS(954), + [anon_sym_L_SQUOTE] = ACTIONS(954), + [anon_sym_u_SQUOTE] = ACTIONS(954), + [anon_sym_U_SQUOTE] = ACTIONS(954), + [anon_sym_u8_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_L_DQUOTE] = ACTIONS(954), + [anon_sym_u_DQUOTE] = ACTIONS(954), + [anon_sym_U_DQUOTE] = ACTIONS(954), + [anon_sym_u8_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [sym_null] = ACTIONS(952), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [293] = { + [sym_attribute_declaration] = STATE(280), + [sym_compound_statement] = STATE(307), + [sym_attributed_statement] = STATE(307), + [sym_labeled_statement] = STATE(307), + [sym_expression_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(307), + [sym_case_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_do_statement] = STATE(307), + [sym_for_statement] = STATE(307), + [sym_return_statement] = STATE(307), + [sym_break_statement] = STATE(307), + [sym_continue_statement] = STATE(307), + [sym_goto_statement] = STATE(307), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(1317), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39414,155 +40111,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_if] = ACTIONS(333), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(337), + [anon_sym_default] = ACTIONS(339), + [anon_sym_while] = ACTIONS(341), + [anon_sym_do] = ACTIONS(343), + [anon_sym_for] = ACTIONS(345), + [anon_sym_return] = ACTIONS(347), + [anon_sym_break] = ACTIONS(349), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_goto] = ACTIONS(353), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(141), - [sym_attributed_statement] = STATE(141), - [sym_labeled_statement] = STATE(141), - [sym_expression_statement] = STATE(141), - [sym_if_statement] = STATE(141), - [sym_switch_statement] = STATE(141), - [sym_case_statement] = STATE(141), - [sym_while_statement] = STATE(141), - [sym_do_statement] = STATE(141), - [sym_for_statement] = STATE(141), - [sym_return_statement] = STATE(141), - [sym_break_statement] = STATE(141), - [sym_continue_statement] = STATE(141), - [sym_goto_statement] = STATE(141), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [294] = { + [sym_identifier] = ACTIONS(980), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(980), + [aux_sym_preproc_if_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(980), + [sym_preproc_directive] = ACTIONS(980), + [anon_sym_LPAREN2] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym___attribute__] = ACTIONS(980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(982), + [anon_sym___declspec] = ACTIONS(980), + [anon_sym___cdecl] = ACTIONS(980), + [anon_sym___clrcall] = ACTIONS(980), + [anon_sym___stdcall] = ACTIONS(980), + [anon_sym___fastcall] = ACTIONS(980), + [anon_sym___thiscall] = ACTIONS(980), + [anon_sym___vectorcall] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_static] = ACTIONS(980), + [anon_sym_auto] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_inline] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_restrict] = ACTIONS(980), + [anon_sym___restrict__] = ACTIONS(980), + [anon_sym__Atomic] = ACTIONS(980), + [anon_sym__Noreturn] = ACTIONS(980), + [anon_sym_signed] = ACTIONS(980), + [anon_sym_unsigned] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [sym_primitive_type] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(980), + [anon_sym_case] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_goto] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_sizeof] = ACTIONS(980), + [anon_sym_offsetof] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(980), + [sym_number_literal] = ACTIONS(982), + [anon_sym_L_SQUOTE] = ACTIONS(982), + [anon_sym_u_SQUOTE] = ACTIONS(982), + [anon_sym_U_SQUOTE] = ACTIONS(982), + [anon_sym_u8_SQUOTE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_L_DQUOTE] = ACTIONS(982), + [anon_sym_u_DQUOTE] = ACTIONS(982), + [anon_sym_U_DQUOTE] = ACTIONS(982), + [anon_sym_u8_DQUOTE] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(165), - [sym_attributed_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), + [295] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_typedef] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym___attribute__] = ACTIONS(1004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1006), + [anon_sym___declspec] = ACTIONS(1004), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_auto] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_inline] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_restrict] = ACTIONS(1004), + [anon_sym___restrict__] = ACTIONS(1004), + [anon_sym__Atomic] = ACTIONS(1004), + [anon_sym__Noreturn] = ACTIONS(1004), + [anon_sym_signed] = ACTIONS(1004), + [anon_sym_unsigned] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [sym_primitive_type] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_goto] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1004), + [anon_sym_offsetof] = ACTIONS(1004), + [anon_sym__Generic] = ACTIONS(1004), + [sym_number_literal] = ACTIONS(1006), + [anon_sym_L_SQUOTE] = ACTIONS(1006), + [anon_sym_u_SQUOTE] = ACTIONS(1006), + [anon_sym_U_SQUOTE] = ACTIONS(1006), + [anon_sym_u8_SQUOTE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1006), + [anon_sym_L_DQUOTE] = ACTIONS(1006), + [anon_sym_u_DQUOTE] = ACTIONS(1006), + [anon_sym_U_DQUOTE] = ACTIONS(1006), + [anon_sym_u8_DQUOTE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(956), + [aux_sym_preproc_def_token1] = ACTIONS(956), + [aux_sym_preproc_if_token1] = ACTIONS(956), + [aux_sym_preproc_if_token2] = ACTIONS(956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(956), + [sym_preproc_directive] = ACTIONS(956), + [anon_sym_LPAREN2] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(958), + [anon_sym_TILDE] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(958), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SEMI] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(956), + [anon_sym_extern] = ACTIONS(956), + [anon_sym___attribute__] = ACTIONS(956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(958), + [anon_sym___declspec] = ACTIONS(956), + [anon_sym___cdecl] = ACTIONS(956), + [anon_sym___clrcall] = ACTIONS(956), + [anon_sym___stdcall] = ACTIONS(956), + [anon_sym___fastcall] = ACTIONS(956), + [anon_sym___thiscall] = ACTIONS(956), + [anon_sym___vectorcall] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_static] = ACTIONS(956), + [anon_sym_auto] = ACTIONS(956), + [anon_sym_register] = ACTIONS(956), + [anon_sym_inline] = ACTIONS(956), + [anon_sym_const] = ACTIONS(956), + [anon_sym_volatile] = ACTIONS(956), + [anon_sym_restrict] = ACTIONS(956), + [anon_sym___restrict__] = ACTIONS(956), + [anon_sym__Atomic] = ACTIONS(956), + [anon_sym__Noreturn] = ACTIONS(956), + [anon_sym_signed] = ACTIONS(956), + [anon_sym_unsigned] = ACTIONS(956), + [anon_sym_long] = ACTIONS(956), + [anon_sym_short] = ACTIONS(956), + [sym_primitive_type] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_union] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_else] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(956), + [anon_sym_case] = ACTIONS(956), + [anon_sym_default] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), + [anon_sym_do] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), + [anon_sym_goto] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(958), + [anon_sym_PLUS_PLUS] = ACTIONS(958), + [anon_sym_sizeof] = ACTIONS(956), + [anon_sym_offsetof] = ACTIONS(956), + [anon_sym__Generic] = ACTIONS(956), + [sym_number_literal] = ACTIONS(958), + [anon_sym_L_SQUOTE] = ACTIONS(958), + [anon_sym_u_SQUOTE] = ACTIONS(958), + [anon_sym_U_SQUOTE] = ACTIONS(958), + [anon_sym_u8_SQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_L_DQUOTE] = ACTIONS(958), + [anon_sym_u_DQUOTE] = ACTIONS(958), + [anon_sym_U_DQUOTE] = ACTIONS(958), + [anon_sym_u8_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym_true] = ACTIONS(956), + [sym_false] = ACTIONS(956), + [sym_null] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + }, + [297] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_LPAREN2] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_typedef] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym___attribute__] = ACTIONS(1000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1002), + [anon_sym___declspec] = ACTIONS(1000), + [anon_sym___cdecl] = ACTIONS(1000), + [anon_sym___clrcall] = ACTIONS(1000), + [anon_sym___stdcall] = ACTIONS(1000), + [anon_sym___fastcall] = ACTIONS(1000), + [anon_sym___thiscall] = ACTIONS(1000), + [anon_sym___vectorcall] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_auto] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_restrict] = ACTIONS(1000), + [anon_sym___restrict__] = ACTIONS(1000), + [anon_sym__Atomic] = ACTIONS(1000), + [anon_sym__Noreturn] = ACTIONS(1000), + [anon_sym_signed] = ACTIONS(1000), + [anon_sym_unsigned] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [sym_primitive_type] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1000), + [anon_sym_offsetof] = ACTIONS(1000), + [anon_sym__Generic] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [298] = { + [sym_attribute_declaration] = STATE(298), + [sym_compound_statement] = STATE(297), + [sym_attributed_statement] = STATE(297), + [sym_labeled_statement] = STATE(297), + [sym_expression_statement] = STATE(297), + [sym_if_statement] = STATE(297), + [sym_switch_statement] = STATE(297), + [sym_case_statement] = STATE(297), + [sym_while_statement] = STATE(297), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(297), + [sym_return_statement] = STATE(297), + [sym_break_statement] = STATE(297), + [sym_continue_statement] = STATE(297), + [sym_goto_statement] = STATE(297), + [sym__expression] = STATE(790), + [sym_comma_expression] = STATE(1419), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(298), + [sym_identifier] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1210), + [anon_sym_offsetof] = ACTIONS(1213), + [anon_sym__Generic] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1222), + [anon_sym_u_SQUOTE] = ACTIONS(1222), + [anon_sym_U_SQUOTE] = ACTIONS(1222), + [anon_sym_u8_SQUOTE] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [sym_null] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + }, + [299] = { + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(964), + [aux_sym_preproc_def_token1] = ACTIONS(964), + [aux_sym_preproc_if_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(964), + [sym_preproc_directive] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym___attribute__] = ACTIONS(964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(966), + [anon_sym___declspec] = ACTIONS(964), + [anon_sym___cdecl] = ACTIONS(964), + [anon_sym___clrcall] = ACTIONS(964), + [anon_sym___stdcall] = ACTIONS(964), + [anon_sym___fastcall] = ACTIONS(964), + [anon_sym___thiscall] = ACTIONS(964), + [anon_sym___vectorcall] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_static] = ACTIONS(964), + [anon_sym_auto] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_signed] = ACTIONS(964), + [anon_sym_unsigned] = ACTIONS(964), + [anon_sym_long] = ACTIONS(964), + [anon_sym_short] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(964), + [anon_sym_enum] = ACTIONS(964), + [anon_sym_struct] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(964), + [anon_sym_case] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_goto] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(964), + [anon_sym_offsetof] = ACTIONS(964), + [anon_sym__Generic] = ACTIONS(964), + [sym_number_literal] = ACTIONS(966), + [anon_sym_L_SQUOTE] = ACTIONS(966), + [anon_sym_u_SQUOTE] = ACTIONS(966), + [anon_sym_U_SQUOTE] = ACTIONS(966), + [anon_sym_u8_SQUOTE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_L_DQUOTE] = ACTIONS(966), + [anon_sym_u_DQUOTE] = ACTIONS(966), + [anon_sym_U_DQUOTE] = ACTIONS(966), + [anon_sym_u8_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(964), + [sym_false] = ACTIONS(964), + [sym_null] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(960), + [aux_sym_preproc_def_token1] = ACTIONS(960), + [aux_sym_preproc_if_token1] = ACTIONS(960), + [aux_sym_preproc_if_token2] = ACTIONS(960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(960), + [sym_preproc_directive] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(960), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [anon_sym___declspec] = ACTIONS(960), + [anon_sym___cdecl] = ACTIONS(960), + [anon_sym___clrcall] = ACTIONS(960), + [anon_sym___stdcall] = ACTIONS(960), + [anon_sym___fastcall] = ACTIONS(960), + [anon_sym___thiscall] = ACTIONS(960), + [anon_sym___vectorcall] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_volatile] = ACTIONS(960), + [anon_sym_restrict] = ACTIONS(960), + [anon_sym___restrict__] = ACTIONS(960), + [anon_sym__Atomic] = ACTIONS(960), + [anon_sym__Noreturn] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(960), + [anon_sym_unsigned] = ACTIONS(960), + [anon_sym_long] = ACTIONS(960), + [anon_sym_short] = ACTIONS(960), + [sym_primitive_type] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_else] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(960), + [anon_sym_case] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [anon_sym_do] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_goto] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_sizeof] = ACTIONS(960), + [anon_sym_offsetof] = ACTIONS(960), + [anon_sym__Generic] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_identifier] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym___attribute__] = ACTIONS(914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(916), + [anon_sym___declspec] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_static] = ACTIONS(914), + [anon_sym_auto] = ACTIONS(914), + [anon_sym_register] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_volatile] = ACTIONS(914), + [anon_sym_restrict] = ACTIONS(914), + [anon_sym___restrict__] = ACTIONS(914), + [anon_sym__Atomic] = ACTIONS(914), + [anon_sym__Noreturn] = ACTIONS(914), + [anon_sym_signed] = ACTIONS(914), + [anon_sym_unsigned] = ACTIONS(914), + [anon_sym_long] = ACTIONS(914), + [anon_sym_short] = ACTIONS(914), + [sym_primitive_type] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_goto] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(916), + [anon_sym_sizeof] = ACTIONS(914), + [anon_sym_offsetof] = ACTIONS(914), + [anon_sym__Generic] = ACTIONS(914), + [sym_number_literal] = ACTIONS(916), + [anon_sym_L_SQUOTE] = ACTIONS(916), + [anon_sym_u_SQUOTE] = ACTIONS(916), + [anon_sym_U_SQUOTE] = ACTIONS(916), + [anon_sym_u8_SQUOTE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_L_DQUOTE] = ACTIONS(916), + [anon_sym_u_DQUOTE] = ACTIONS(916), + [anon_sym_U_DQUOTE] = ACTIONS(916), + [anon_sym_u8_DQUOTE] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(916), + [sym_true] = ACTIONS(914), + [sym_false] = ACTIONS(914), + [sym_null] = ACTIONS(914), + [sym_comment] = ACTIONS(3), + }, + [302] = { + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(920), + [aux_sym_preproc_def_token1] = ACTIONS(920), + [aux_sym_preproc_if_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(920), + [sym_preproc_directive] = ACTIONS(920), + [anon_sym_LPAREN2] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym___attribute__] = ACTIONS(920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(922), + [anon_sym___declspec] = ACTIONS(920), + [anon_sym___cdecl] = ACTIONS(920), + [anon_sym___clrcall] = ACTIONS(920), + [anon_sym___stdcall] = ACTIONS(920), + [anon_sym___fastcall] = ACTIONS(920), + [anon_sym___thiscall] = ACTIONS(920), + [anon_sym___vectorcall] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_static] = ACTIONS(920), + [anon_sym_auto] = ACTIONS(920), + [anon_sym_register] = ACTIONS(920), + [anon_sym_inline] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_volatile] = ACTIONS(920), + [anon_sym_restrict] = ACTIONS(920), + [anon_sym___restrict__] = ACTIONS(920), + [anon_sym__Atomic] = ACTIONS(920), + [anon_sym__Noreturn] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(920), + [anon_sym_unsigned] = ACTIONS(920), + [anon_sym_long] = ACTIONS(920), + [anon_sym_short] = ACTIONS(920), + [sym_primitive_type] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_else] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(920), + [anon_sym_case] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_do] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(920), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_sizeof] = ACTIONS(920), + [anon_sym_offsetof] = ACTIONS(920), + [anon_sym__Generic] = ACTIONS(920), + [sym_number_literal] = ACTIONS(922), + [anon_sym_L_SQUOTE] = ACTIONS(922), + [anon_sym_u_SQUOTE] = ACTIONS(922), + [anon_sym_U_SQUOTE] = ACTIONS(922), + [anon_sym_u8_SQUOTE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_L_DQUOTE] = ACTIONS(922), + [anon_sym_u_DQUOTE] = ACTIONS(922), + [anon_sym_U_DQUOTE] = ACTIONS(922), + [anon_sym_u8_DQUOTE] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [sym_null] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + }, + [303] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [sym_attribute_declaration] = STATE(129), + [sym_compound_statement] = STATE(283), + [sym_attributed_statement] = STATE(283), + [sym_labeled_statement] = STATE(283), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(283), + [sym_while_statement] = STATE(283), + [sym_do_statement] = STATE(283), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(283), + [sym_break_statement] = STATE(283), + [sym_continue_statement] = STATE(283), + [sym_goto_statement] = STATE(283), + [sym__expression] = STATE(800), + [sym_comma_expression] = STATE(1344), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1142), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39570,77 +40991,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_case] = ACTIONS(598), + [anon_sym_default] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_do] = ACTIONS(604), + [anon_sym_for] = ACTIONS(606), + [anon_sym_return] = ACTIONS(608), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_goto] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_attribute_declaration] = STATE(353), - [sym_compound_statement] = STATE(152), - [sym_attributed_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(1138), + [305] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(1484), + [sym_attributed_statement] = STATE(1484), + [sym_labeled_statement] = STATE(1484), + [sym_expression_statement] = STATE(1484), + [sym_if_statement] = STATE(1484), + [sym_switch_statement] = STATE(1484), + [sym_case_statement] = STATE(1484), + [sym_while_statement] = STATE(1484), + [sym_do_statement] = STATE(1484), + [sym_for_statement] = STATE(1484), + [sym_return_statement] = STATE(1484), + [sym_break_statement] = STATE(1484), + [sym_continue_statement] = STATE(1484), + [sym_goto_statement] = STATE(1484), + [sym__expression] = STATE(809), + [sym_comma_expression] = STATE(1465), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -39649,7 +41072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1144), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -39665,258 +41088,662 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(204), - [sym_attributed_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [306] = { + [sym_identifier] = ACTIONS(940), + [aux_sym_preproc_include_token1] = ACTIONS(940), + [aux_sym_preproc_def_token1] = ACTIONS(940), + [aux_sym_preproc_if_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(940), + [sym_preproc_directive] = ACTIONS(940), + [anon_sym_LPAREN2] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(940), + [anon_sym___attribute__] = ACTIONS(940), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(940), + [anon_sym___cdecl] = ACTIONS(940), + [anon_sym___clrcall] = ACTIONS(940), + [anon_sym___stdcall] = ACTIONS(940), + [anon_sym___fastcall] = ACTIONS(940), + [anon_sym___thiscall] = ACTIONS(940), + [anon_sym___vectorcall] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_static] = ACTIONS(940), + [anon_sym_auto] = ACTIONS(940), + [anon_sym_register] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(940), + [anon_sym_const] = ACTIONS(940), + [anon_sym_volatile] = ACTIONS(940), + [anon_sym_restrict] = ACTIONS(940), + [anon_sym___restrict__] = ACTIONS(940), + [anon_sym__Atomic] = ACTIONS(940), + [anon_sym__Noreturn] = ACTIONS(940), + [anon_sym_signed] = ACTIONS(940), + [anon_sym_unsigned] = ACTIONS(940), + [anon_sym_long] = ACTIONS(940), + [anon_sym_short] = ACTIONS(940), + [sym_primitive_type] = ACTIONS(940), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_struct] = ACTIONS(940), + [anon_sym_union] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_else] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(940), + [anon_sym_default] = ACTIONS(940), + [anon_sym_while] = ACTIONS(940), + [anon_sym_do] = ACTIONS(940), + [anon_sym_for] = ACTIONS(940), + [anon_sym_return] = ACTIONS(940), + [anon_sym_break] = ACTIONS(940), + [anon_sym_continue] = ACTIONS(940), + [anon_sym_goto] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(942), + [anon_sym_PLUS_PLUS] = ACTIONS(942), + [anon_sym_sizeof] = ACTIONS(940), + [anon_sym_offsetof] = ACTIONS(940), + [anon_sym__Generic] = ACTIONS(940), + [sym_number_literal] = ACTIONS(942), + [anon_sym_L_SQUOTE] = ACTIONS(942), + [anon_sym_u_SQUOTE] = ACTIONS(942), + [anon_sym_U_SQUOTE] = ACTIONS(942), + [anon_sym_u8_SQUOTE] = ACTIONS(942), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_L_DQUOTE] = ACTIONS(942), + [anon_sym_u_DQUOTE] = ACTIONS(942), + [anon_sym_U_DQUOTE] = ACTIONS(942), + [anon_sym_u8_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym_true] = ACTIONS(940), + [sym_false] = ACTIONS(940), + [sym_null] = ACTIONS(940), [sym_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [307] = { + [sym_identifier] = ACTIONS(936), + [aux_sym_preproc_include_token1] = ACTIONS(936), + [aux_sym_preproc_def_token1] = ACTIONS(936), + [aux_sym_preproc_if_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(936), + [sym_preproc_directive] = ACTIONS(936), + [anon_sym_LPAREN2] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(936), + [anon_sym_PLUS] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(936), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(938), + [anon_sym___declspec] = ACTIONS(936), + [anon_sym___cdecl] = ACTIONS(936), + [anon_sym___clrcall] = ACTIONS(936), + [anon_sym___stdcall] = ACTIONS(936), + [anon_sym___fastcall] = ACTIONS(936), + [anon_sym___thiscall] = ACTIONS(936), + [anon_sym___vectorcall] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_const] = ACTIONS(936), + [anon_sym_volatile] = ACTIONS(936), + [anon_sym_restrict] = ACTIONS(936), + [anon_sym___restrict__] = ACTIONS(936), + [anon_sym__Atomic] = ACTIONS(936), + [anon_sym__Noreturn] = ACTIONS(936), + [anon_sym_signed] = ACTIONS(936), + [anon_sym_unsigned] = ACTIONS(936), + [anon_sym_long] = ACTIONS(936), + [anon_sym_short] = ACTIONS(936), + [sym_primitive_type] = ACTIONS(936), + [anon_sym_enum] = ACTIONS(936), + [anon_sym_struct] = ACTIONS(936), + [anon_sym_union] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_default] = ACTIONS(936), + [anon_sym_while] = ACTIONS(936), + [anon_sym_do] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_goto] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(938), + [anon_sym_sizeof] = ACTIONS(936), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(936), + [sym_number_literal] = ACTIONS(938), + [anon_sym_L_SQUOTE] = ACTIONS(938), + [anon_sym_u_SQUOTE] = ACTIONS(938), + [anon_sym_U_SQUOTE] = ACTIONS(938), + [anon_sym_u8_SQUOTE] = ACTIONS(938), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(936), + [sym_false] = ACTIONS(936), + [sym_null] = ACTIONS(936), [sym_comment] = ACTIONS(3), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym___restrict__] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym__Noreturn] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [anon_sym__Generic] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [308] = { + [sym_identifier] = ACTIONS(932), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), + [anon_sym_LPAREN2] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(934), + [anon_sym_TILDE] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(932), + [anon_sym_PLUS] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(932), + [anon_sym_extern] = ACTIONS(932), + [anon_sym___attribute__] = ACTIONS(932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(934), + [anon_sym___declspec] = ACTIONS(932), + [anon_sym___cdecl] = ACTIONS(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_static] = ACTIONS(932), + [anon_sym_auto] = ACTIONS(932), + [anon_sym_register] = ACTIONS(932), + [anon_sym_inline] = ACTIONS(932), + [anon_sym_const] = ACTIONS(932), + [anon_sym_volatile] = ACTIONS(932), + [anon_sym_restrict] = ACTIONS(932), + [anon_sym___restrict__] = ACTIONS(932), + [anon_sym__Atomic] = ACTIONS(932), + [anon_sym__Noreturn] = ACTIONS(932), + [anon_sym_signed] = ACTIONS(932), + [anon_sym_unsigned] = ACTIONS(932), + [anon_sym_long] = ACTIONS(932), + [anon_sym_short] = ACTIONS(932), + [sym_primitive_type] = ACTIONS(932), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_union] = ACTIONS(932), + [anon_sym_if] = ACTIONS(932), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(932), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(932), + [anon_sym_do] = ACTIONS(932), + [anon_sym_for] = ACTIONS(932), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(932), + [anon_sym_continue] = ACTIONS(932), + [anon_sym_goto] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(934), + [anon_sym_PLUS_PLUS] = ACTIONS(934), + [anon_sym_sizeof] = ACTIONS(932), + [anon_sym_offsetof] = ACTIONS(932), + [anon_sym__Generic] = ACTIONS(932), + [sym_number_literal] = ACTIONS(934), + [anon_sym_L_SQUOTE] = ACTIONS(934), + [anon_sym_u_SQUOTE] = ACTIONS(934), + [anon_sym_U_SQUOTE] = ACTIONS(934), + [anon_sym_u8_SQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(934), + [anon_sym_L_DQUOTE] = ACTIONS(934), + [anon_sym_u_DQUOTE] = ACTIONS(934), + [anon_sym_U_DQUOTE] = ACTIONS(934), + [anon_sym_u8_DQUOTE] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_true] = ACTIONS(932), + [sym_false] = ACTIONS(932), + [sym_null] = ACTIONS(932), [sym_comment] = ACTIONS(3), }, - [296] = { + [309] = { + [sym_identifier] = ACTIONS(928), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_TILDE] = ACTIONS(930), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_AMP] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym___attribute__] = ACTIONS(928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(930), + [anon_sym___declspec] = ACTIONS(928), + [anon_sym___cdecl] = ACTIONS(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_static] = ACTIONS(928), + [anon_sym_auto] = ACTIONS(928), + [anon_sym_register] = ACTIONS(928), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_restrict] = ACTIONS(928), + [anon_sym___restrict__] = ACTIONS(928), + [anon_sym__Atomic] = ACTIONS(928), + [anon_sym__Noreturn] = ACTIONS(928), + [anon_sym_signed] = ACTIONS(928), + [anon_sym_unsigned] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [sym_primitive_type] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(928), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_goto] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(928), + [anon_sym_offsetof] = ACTIONS(928), + [anon_sym__Generic] = ACTIONS(928), + [sym_number_literal] = ACTIONS(930), + [anon_sym_L_SQUOTE] = ACTIONS(930), + [anon_sym_u_SQUOTE] = ACTIONS(930), + [anon_sym_U_SQUOTE] = ACTIONS(930), + [anon_sym_u8_SQUOTE] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(930), + [anon_sym_L_DQUOTE] = ACTIONS(930), + [anon_sym_u_DQUOTE] = ACTIONS(930), + [anon_sym_U_DQUOTE] = ACTIONS(930), + [anon_sym_u8_DQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(930), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_null] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + }, + [310] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token2] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1050), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym___restrict__] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym__Noreturn] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [anon_sym_offsetof] = ACTIONS(1048), + [anon_sym__Generic] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym___restrict__] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym__Noreturn] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [anon_sym_offsetof] = ACTIONS(1048), + [anon_sym__Generic] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token2] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1046), [sym_identifier] = ACTIONS(1044), [aux_sym_preproc_include_token1] = ACTIONS(1044), [aux_sym_preproc_def_token1] = ACTIONS(1044), @@ -39944,7 +41771,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1044), [anon_sym___vectorcall] = ACTIONS(1044), [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), [anon_sym_static] = ACTIONS(1044), [anon_sym_auto] = ACTIONS(1044), [anon_sym_register] = ACTIONS(1044), @@ -39977,6 +41803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1046), [anon_sym_PLUS_PLUS] = ACTIONS(1046), [anon_sym_sizeof] = ACTIONS(1044), + [anon_sym_offsetof] = ACTIONS(1044), [anon_sym__Generic] = ACTIONS(1044), [sym_number_literal] = ACTIONS(1046), [anon_sym_L_SQUOTE] = ACTIONS(1046), @@ -39994,723 +41821,1047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [315] = { + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(70), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [316] = { + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1100), - [aux_sym_preproc_include_token1] = ACTIONS(1100), - [aux_sym_preproc_def_token1] = ACTIONS(1100), - [aux_sym_preproc_if_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), - [sym_preproc_directive] = ACTIONS(1100), - [anon_sym_LPAREN2] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_typedef] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym___attribute__] = ACTIONS(1100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), - [anon_sym___declspec] = ACTIONS(1100), - [anon_sym___cdecl] = ACTIONS(1100), - [anon_sym___clrcall] = ACTIONS(1100), - [anon_sym___stdcall] = ACTIONS(1100), - [anon_sym___fastcall] = ACTIONS(1100), - [anon_sym___thiscall] = ACTIONS(1100), - [anon_sym___vectorcall] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_auto] = ACTIONS(1100), - [anon_sym_register] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_const] = ACTIONS(1100), - [anon_sym_volatile] = ACTIONS(1100), - [anon_sym_restrict] = ACTIONS(1100), - [anon_sym___restrict__] = ACTIONS(1100), - [anon_sym__Atomic] = ACTIONS(1100), - [anon_sym__Noreturn] = ACTIONS(1100), - [anon_sym_signed] = ACTIONS(1100), - [anon_sym_unsigned] = ACTIONS(1100), - [anon_sym_long] = ACTIONS(1100), - [anon_sym_short] = ACTIONS(1100), - [sym_primitive_type] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_struct] = ACTIONS(1100), - [anon_sym_union] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_switch] = ACTIONS(1100), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_goto] = ACTIONS(1100), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [anon_sym_sizeof] = ACTIONS(1100), - [anon_sym__Generic] = ACTIONS(1100), - [sym_number_literal] = ACTIONS(1102), - [anon_sym_L_SQUOTE] = ACTIONS(1102), - [anon_sym_u_SQUOTE] = ACTIONS(1102), - [anon_sym_U_SQUOTE] = ACTIONS(1102), - [anon_sym_u8_SQUOTE] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_L_DQUOTE] = ACTIONS(1102), - [anon_sym_u_DQUOTE] = ACTIONS(1102), - [anon_sym_U_DQUOTE] = ACTIONS(1102), - [anon_sym_u8_DQUOTE] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [sym_true] = ACTIONS(1100), - [sym_false] = ACTIONS(1100), - [sym_null] = ACTIONS(1100), - [sym_comment] = ACTIONS(3), - }, - [300] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(198), - [sym_attributed_statement] = STATE(198), - [sym_labeled_statement] = STATE(198), - [sym_expression_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_switch_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_do_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(198), - [sym_break_statement] = STATE(198), - [sym_continue_statement] = STATE(198), - [sym_goto_statement] = STATE(198), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(99), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [317] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(203), - [sym_attributed_statement] = STATE(203), - [sym_labeled_statement] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_switch_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_goto_statement] = STATE(203), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [318] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(100), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [319] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [320] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(98), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_case_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [321] = { + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym___restrict__] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym__Noreturn] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), + [anon_sym__Generic] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), + [322] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym___restrict__] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym__Noreturn] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), + [anon_sym__Generic] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym___restrict__] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym__Noreturn] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [anon_sym_offsetof] = ACTIONS(1044), + [anon_sym__Generic] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_identifier] = ACTIONS(1108), + [aux_sym_preproc_include_token1] = ACTIONS(1108), + [aux_sym_preproc_def_token1] = ACTIONS(1108), + [aux_sym_preproc_if_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1108), + [sym_preproc_directive] = ACTIONS(1108), + [anon_sym_LPAREN2] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1108), + [anon_sym_PLUS] = ACTIONS(1108), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1108), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym___attribute__] = ACTIONS(1108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1110), + [anon_sym___declspec] = ACTIONS(1108), + [anon_sym___cdecl] = ACTIONS(1108), + [anon_sym___clrcall] = ACTIONS(1108), + [anon_sym___stdcall] = ACTIONS(1108), + [anon_sym___fastcall] = ACTIONS(1108), + [anon_sym___thiscall] = ACTIONS(1108), + [anon_sym___vectorcall] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_auto] = ACTIONS(1108), + [anon_sym_register] = ACTIONS(1108), + [anon_sym_inline] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_volatile] = ACTIONS(1108), + [anon_sym_restrict] = ACTIONS(1108), + [anon_sym___restrict__] = ACTIONS(1108), + [anon_sym__Atomic] = ACTIONS(1108), + [anon_sym__Noreturn] = ACTIONS(1108), + [anon_sym_signed] = ACTIONS(1108), + [anon_sym_unsigned] = ACTIONS(1108), + [anon_sym_long] = ACTIONS(1108), + [anon_sym_short] = ACTIONS(1108), + [sym_primitive_type] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(1110), + [anon_sym_PLUS_PLUS] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1108), + [anon_sym_offsetof] = ACTIONS(1108), + [anon_sym__Generic] = ACTIONS(1108), + [sym_number_literal] = ACTIONS(1110), + [anon_sym_L_SQUOTE] = ACTIONS(1110), + [anon_sym_u_SQUOTE] = ACTIONS(1110), + [anon_sym_U_SQUOTE] = ACTIONS(1110), + [anon_sym_u8_SQUOTE] = ACTIONS(1110), + [anon_sym_SQUOTE] = ACTIONS(1110), + [anon_sym_L_DQUOTE] = ACTIONS(1110), + [anon_sym_u_DQUOTE] = ACTIONS(1110), + [anon_sym_U_DQUOTE] = ACTIONS(1110), + [anon_sym_u8_DQUOTE] = ACTIONS(1110), + [anon_sym_DQUOTE] = ACTIONS(1110), + [sym_true] = ACTIONS(1108), + [sym_false] = ACTIONS(1108), + [sym_null] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), [anon_sym_AMP] = ACTIONS(1062), [anon_sym_SEMI] = ACTIONS(1062), [anon_sym_typedef] = ACTIONS(1060), @@ -40725,6 +42876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1060), [anon_sym___vectorcall] = ACTIONS(1060), [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), [anon_sym_static] = ACTIONS(1060), [anon_sym_auto] = ACTIONS(1060), [anon_sym_register] = ACTIONS(1060), @@ -40757,6 +42909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1062), [anon_sym_PLUS_PLUS] = ACTIONS(1062), [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), [anon_sym__Generic] = ACTIONS(1060), [sym_number_literal] = ACTIONS(1062), [anon_sym_L_SQUOTE] = ACTIONS(1062), @@ -40774,475 +42927,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(94), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_case_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token2] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), + [329] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [310] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(83), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_case_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [311] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(69), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [330] = { + [sym_identifier] = ACTIONS(1060), + [aux_sym_preproc_include_token1] = ACTIONS(1060), + [aux_sym_preproc_def_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token1] = ACTIONS(1060), + [aux_sym_preproc_if_token2] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), + [sym_preproc_directive] = ACTIONS(1060), + [anon_sym_LPAREN2] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_typedef] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym___attribute__] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), + [anon_sym___declspec] = ACTIONS(1060), + [anon_sym___cdecl] = ACTIONS(1060), + [anon_sym___clrcall] = ACTIONS(1060), + [anon_sym___stdcall] = ACTIONS(1060), + [anon_sym___fastcall] = ACTIONS(1060), + [anon_sym___thiscall] = ACTIONS(1060), + [anon_sym___vectorcall] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_static] = ACTIONS(1060), + [anon_sym_auto] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_inline] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_volatile] = ACTIONS(1060), + [anon_sym_restrict] = ACTIONS(1060), + [anon_sym___restrict__] = ACTIONS(1060), + [anon_sym__Atomic] = ACTIONS(1060), + [anon_sym__Noreturn] = ACTIONS(1060), + [anon_sym_signed] = ACTIONS(1060), + [anon_sym_unsigned] = ACTIONS(1060), + [anon_sym_long] = ACTIONS(1060), + [anon_sym_short] = ACTIONS(1060), + [sym_primitive_type] = ACTIONS(1060), + [anon_sym_enum] = ACTIONS(1060), + [anon_sym_struct] = ACTIONS(1060), + [anon_sym_union] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1060), + [anon_sym_case] = ACTIONS(1060), + [anon_sym_default] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_goto] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_PLUS_PLUS] = ACTIONS(1062), + [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), + [anon_sym__Generic] = ACTIONS(1060), + [sym_number_literal] = ACTIONS(1062), + [anon_sym_L_SQUOTE] = ACTIONS(1062), + [anon_sym_u_SQUOTE] = ACTIONS(1062), + [anon_sym_U_SQUOTE] = ACTIONS(1062), + [anon_sym_u8_SQUOTE] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_L_DQUOTE] = ACTIONS(1062), + [anon_sym_u_DQUOTE] = ACTIONS(1062), + [anon_sym_U_DQUOTE] = ACTIONS(1062), + [anon_sym_u8_DQUOTE] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym_true] = ACTIONS(1060), + [sym_false] = ACTIONS(1060), + [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), + [331] = { + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(1048), + [aux_sym_preproc_def_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token1] = ACTIONS(1048), + [aux_sym_preproc_if_token2] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), + [sym_preproc_directive] = ACTIONS(1048), + [anon_sym_LPAREN2] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_TILDE] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym___attribute__] = ACTIONS(1048), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), + [anon_sym___declspec] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(1048), + [anon_sym___clrcall] = ACTIONS(1048), + [anon_sym___stdcall] = ACTIONS(1048), + [anon_sym___fastcall] = ACTIONS(1048), + [anon_sym___thiscall] = ACTIONS(1048), + [anon_sym___vectorcall] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_auto] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_inline] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_volatile] = ACTIONS(1048), + [anon_sym_restrict] = ACTIONS(1048), + [anon_sym___restrict__] = ACTIONS(1048), + [anon_sym__Atomic] = ACTIONS(1048), + [anon_sym__Noreturn] = ACTIONS(1048), + [anon_sym_signed] = ACTIONS(1048), + [anon_sym_unsigned] = ACTIONS(1048), + [anon_sym_long] = ACTIONS(1048), + [anon_sym_short] = ACTIONS(1048), + [sym_primitive_type] = ACTIONS(1048), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_struct] = ACTIONS(1048), + [anon_sym_union] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_switch] = ACTIONS(1048), + [anon_sym_case] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1050), + [anon_sym_sizeof] = ACTIONS(1048), + [anon_sym_offsetof] = ACTIONS(1048), + [anon_sym__Generic] = ACTIONS(1048), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1050), + [anon_sym_u_SQUOTE] = ACTIONS(1050), + [anon_sym_U_SQUOTE] = ACTIONS(1050), + [anon_sym_u8_SQUOTE] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_L_DQUOTE] = ACTIONS(1050), + [anon_sym_u_DQUOTE] = ACTIONS(1050), + [anon_sym_U_DQUOTE] = ACTIONS(1050), + [anon_sym_u8_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), [sym_comment] = ACTIONS(3), }, - [313] = { + [332] = { [sym_identifier] = ACTIONS(1100), [aux_sym_preproc_include_token1] = ACTIONS(1100), [aux_sym_preproc_def_token1] = ACTIONS(1100), @@ -41303,6 +43225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1102), [anon_sym_PLUS_PLUS] = ACTIONS(1102), [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), [anon_sym__Generic] = ACTIONS(1100), [sym_number_literal] = ACTIONS(1102), [anon_sym_L_SQUOTE] = ACTIONS(1102), @@ -41320,476 +43243,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1112), - [aux_sym_preproc_include_token1] = ACTIONS(1112), - [aux_sym_preproc_def_token1] = ACTIONS(1112), - [aux_sym_preproc_if_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), - [sym_preproc_directive] = ACTIONS(1112), - [anon_sym_LPAREN2] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_typedef] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym___attribute__] = ACTIONS(1112), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), - [anon_sym___declspec] = ACTIONS(1112), - [anon_sym___cdecl] = ACTIONS(1112), - [anon_sym___clrcall] = ACTIONS(1112), - [anon_sym___stdcall] = ACTIONS(1112), - [anon_sym___fastcall] = ACTIONS(1112), - [anon_sym___thiscall] = ACTIONS(1112), - [anon_sym___vectorcall] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_auto] = ACTIONS(1112), - [anon_sym_register] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1112), - [anon_sym_volatile] = ACTIONS(1112), - [anon_sym_restrict] = ACTIONS(1112), - [anon_sym___restrict__] = ACTIONS(1112), - [anon_sym__Atomic] = ACTIONS(1112), - [anon_sym__Noreturn] = ACTIONS(1112), - [anon_sym_signed] = ACTIONS(1112), - [anon_sym_unsigned] = ACTIONS(1112), - [anon_sym_long] = ACTIONS(1112), - [anon_sym_short] = ACTIONS(1112), - [sym_primitive_type] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_union] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_goto] = ACTIONS(1112), - [anon_sym_DASH_DASH] = ACTIONS(1114), - [anon_sym_PLUS_PLUS] = ACTIONS(1114), - [anon_sym_sizeof] = ACTIONS(1112), - [anon_sym__Generic] = ACTIONS(1112), - [sym_number_literal] = ACTIONS(1114), - [anon_sym_L_SQUOTE] = ACTIONS(1114), - [anon_sym_u_SQUOTE] = ACTIONS(1114), - [anon_sym_U_SQUOTE] = ACTIONS(1114), - [anon_sym_u8_SQUOTE] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_L_DQUOTE] = ACTIONS(1114), - [anon_sym_u_DQUOTE] = ACTIONS(1114), - [anon_sym_U_DQUOTE] = ACTIONS(1114), - [anon_sym_u8_DQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_true] = ACTIONS(1112), - [sym_false] = ACTIONS(1112), - [sym_null] = ACTIONS(1112), + [333] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym___restrict__] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym__Noreturn] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), + [anon_sym__Generic] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1116), - [aux_sym_preproc_include_token1] = ACTIONS(1116), - [aux_sym_preproc_def_token1] = ACTIONS(1116), - [aux_sym_preproc_if_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), - [sym_preproc_directive] = ACTIONS(1116), - [anon_sym_LPAREN2] = ACTIONS(1118), - [anon_sym_BANG] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_typedef] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym___attribute__] = ACTIONS(1116), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), - [anon_sym___declspec] = ACTIONS(1116), - [anon_sym___cdecl] = ACTIONS(1116), - [anon_sym___clrcall] = ACTIONS(1116), - [anon_sym___stdcall] = ACTIONS(1116), - [anon_sym___fastcall] = ACTIONS(1116), - [anon_sym___thiscall] = ACTIONS(1116), - [anon_sym___vectorcall] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_auto] = ACTIONS(1116), - [anon_sym_register] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_const] = ACTIONS(1116), - [anon_sym_volatile] = ACTIONS(1116), - [anon_sym_restrict] = ACTIONS(1116), - [anon_sym___restrict__] = ACTIONS(1116), - [anon_sym__Atomic] = ACTIONS(1116), - [anon_sym__Noreturn] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(1116), - [anon_sym_unsigned] = ACTIONS(1116), - [anon_sym_long] = ACTIONS(1116), - [anon_sym_short] = ACTIONS(1116), - [sym_primitive_type] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_union] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1116), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_goto] = ACTIONS(1116), - [anon_sym_DASH_DASH] = ACTIONS(1118), - [anon_sym_PLUS_PLUS] = ACTIONS(1118), - [anon_sym_sizeof] = ACTIONS(1116), - [anon_sym__Generic] = ACTIONS(1116), - [sym_number_literal] = ACTIONS(1118), - [anon_sym_L_SQUOTE] = ACTIONS(1118), - [anon_sym_u_SQUOTE] = ACTIONS(1118), - [anon_sym_U_SQUOTE] = ACTIONS(1118), - [anon_sym_u8_SQUOTE] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_L_DQUOTE] = ACTIONS(1118), - [anon_sym_u_DQUOTE] = ACTIONS(1118), - [anon_sym_U_DQUOTE] = ACTIONS(1118), - [anon_sym_u8_DQUOTE] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_true] = ACTIONS(1116), - [sym_false] = ACTIONS(1116), - [sym_null] = ACTIONS(1116), + [334] = { + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym___restrict__] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym__Noreturn] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_offsetof] = ACTIONS(1052), + [anon_sym__Generic] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(175), - [sym_attributed_statement] = STATE(175), - [sym_labeled_statement] = STATE(175), - [sym_expression_statement] = STATE(175), - [sym_if_statement] = STATE(175), - [sym_switch_statement] = STATE(175), - [sym_case_statement] = STATE(175), - [sym_while_statement] = STATE(175), - [sym_do_statement] = STATE(175), - [sym_for_statement] = STATE(175), - [sym_return_statement] = STATE(175), - [sym_break_statement] = STATE(175), - [sym_continue_statement] = STATE(175), - [sym_goto_statement] = STATE(175), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [335] = { + [ts_builtin_sym_end] = ACTIONS(1058), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [336] = { + [sym_identifier] = ACTIONS(1044), + [aux_sym_preproc_include_token1] = ACTIONS(1044), + [aux_sym_preproc_def_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token1] = ACTIONS(1044), + [aux_sym_preproc_if_token2] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), + [sym_preproc_directive] = ACTIONS(1044), + [anon_sym_LPAREN2] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_TILDE] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_typedef] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym___attribute__] = ACTIONS(1044), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), + [anon_sym___declspec] = ACTIONS(1044), + [anon_sym___cdecl] = ACTIONS(1044), + [anon_sym___clrcall] = ACTIONS(1044), + [anon_sym___stdcall] = ACTIONS(1044), + [anon_sym___fastcall] = ACTIONS(1044), + [anon_sym___thiscall] = ACTIONS(1044), + [anon_sym___vectorcall] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1044), + [anon_sym_auto] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_inline] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_volatile] = ACTIONS(1044), + [anon_sym_restrict] = ACTIONS(1044), + [anon_sym___restrict__] = ACTIONS(1044), + [anon_sym__Atomic] = ACTIONS(1044), + [anon_sym__Noreturn] = ACTIONS(1044), + [anon_sym_signed] = ACTIONS(1044), + [anon_sym_unsigned] = ACTIONS(1044), + [anon_sym_long] = ACTIONS(1044), + [anon_sym_short] = ACTIONS(1044), + [sym_primitive_type] = ACTIONS(1044), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_struct] = ACTIONS(1044), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_case] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_goto] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(1046), + [anon_sym_sizeof] = ACTIONS(1044), + [anon_sym_offsetof] = ACTIONS(1044), + [anon_sym__Generic] = ACTIONS(1044), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_L_SQUOTE] = ACTIONS(1046), + [anon_sym_u_SQUOTE] = ACTIONS(1046), + [anon_sym_U_SQUOTE] = ACTIONS(1046), + [anon_sym_u8_SQUOTE] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_L_DQUOTE] = ACTIONS(1046), + [anon_sym_u_DQUOTE] = ACTIONS(1046), + [anon_sym_U_DQUOTE] = ACTIONS(1046), + [anon_sym_u8_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_RBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym___restrict__] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym__Noreturn] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [anon_sym__Generic] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), + [337] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_identifier] = ACTIONS(1104), - [aux_sym_preproc_include_token1] = ACTIONS(1104), - [aux_sym_preproc_def_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token1] = ACTIONS(1104), - [aux_sym_preproc_if_token2] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), - [sym_preproc_directive] = ACTIONS(1104), - [anon_sym_LPAREN2] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym___attribute__] = ACTIONS(1104), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), - [anon_sym___declspec] = ACTIONS(1104), - [anon_sym___cdecl] = ACTIONS(1104), - [anon_sym___clrcall] = ACTIONS(1104), - [anon_sym___stdcall] = ACTIONS(1104), - [anon_sym___fastcall] = ACTIONS(1104), - [anon_sym___thiscall] = ACTIONS(1104), - [anon_sym___vectorcall] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_auto] = ACTIONS(1104), - [anon_sym_register] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_const] = ACTIONS(1104), - [anon_sym_volatile] = ACTIONS(1104), - [anon_sym_restrict] = ACTIONS(1104), - [anon_sym___restrict__] = ACTIONS(1104), - [anon_sym__Atomic] = ACTIONS(1104), - [anon_sym__Noreturn] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(1104), - [anon_sym_unsigned] = ACTIONS(1104), - [anon_sym_long] = ACTIONS(1104), - [anon_sym_short] = ACTIONS(1104), - [sym_primitive_type] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_struct] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1104), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_goto] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1106), - [anon_sym_PLUS_PLUS] = ACTIONS(1106), - [anon_sym_sizeof] = ACTIONS(1104), - [anon_sym__Generic] = ACTIONS(1104), - [sym_number_literal] = ACTIONS(1106), - [anon_sym_L_SQUOTE] = ACTIONS(1106), - [anon_sym_u_SQUOTE] = ACTIONS(1106), - [anon_sym_U_SQUOTE] = ACTIONS(1106), - [anon_sym_u8_SQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_L_DQUOTE] = ACTIONS(1106), - [anon_sym_u_DQUOTE] = ACTIONS(1106), - [anon_sym_U_DQUOTE] = ACTIONS(1106), - [anon_sym_u8_DQUOTE] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [sym_true] = ACTIONS(1104), - [sym_false] = ACTIONS(1104), - [sym_null] = ACTIONS(1104), + [338] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1078), + [339] = { [sym_identifier] = ACTIONS(1076), [aux_sym_preproc_include_token1] = ACTIONS(1076), [aux_sym_preproc_def_token1] = ACTIONS(1076), @@ -41817,6 +43745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1076), [anon_sym___vectorcall] = ACTIONS(1076), [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), [anon_sym_static] = ACTIONS(1076), [anon_sym_auto] = ACTIONS(1076), [anon_sym_register] = ACTIONS(1076), @@ -41849,6 +43778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1078), [anon_sym_PLUS_PLUS] = ACTIONS(1078), [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), [anon_sym__Generic] = ACTIONS(1076), [sym_number_literal] = ACTIONS(1078), [anon_sym_L_SQUOTE] = ACTIONS(1078), @@ -41866,90 +43796,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(135), - [sym_attributed_statement] = STATE(135), - [sym_labeled_statement] = STATE(135), - [sym_expression_statement] = STATE(135), - [sym_if_statement] = STATE(135), - [sym_switch_statement] = STATE(135), - [sym_case_statement] = STATE(135), - [sym_while_statement] = STATE(135), - [sym_do_statement] = STATE(135), - [sym_for_statement] = STATE(135), - [sym_return_statement] = STATE(135), - [sym_break_statement] = STATE(135), - [sym_continue_statement] = STATE(135), - [sym_goto_statement] = STATE(135), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [340] = { + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [322] = { + [341] = { + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), + [sym_comment] = ACTIONS(3), + }, + [342] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), [aux_sym_preproc_if_token1] = ACTIONS(1084), - [aux_sym_preproc_if_token2] = ACTIONS(1084), [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), [sym_preproc_directive] = ACTIONS(1084), @@ -41973,6 +43982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1084), [anon_sym___vectorcall] = ACTIONS(1084), [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_static] = ACTIONS(1084), [anon_sym_auto] = ACTIONS(1084), [anon_sym_register] = ACTIONS(1084), @@ -42005,6 +44015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1086), [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), + [anon_sym_offsetof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), @@ -42022,787 +44033,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_identifier] = ACTIONS(1060), - [aux_sym_preproc_include_token1] = ACTIONS(1060), - [aux_sym_preproc_def_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token1] = ACTIONS(1060), - [aux_sym_preproc_if_token2] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1060), - [sym_preproc_directive] = ACTIONS(1060), - [anon_sym_LPAREN2] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1062), - [anon_sym_typedef] = ACTIONS(1060), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym___attribute__] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1062), - [anon_sym___declspec] = ACTIONS(1060), - [anon_sym___cdecl] = ACTIONS(1060), - [anon_sym___clrcall] = ACTIONS(1060), - [anon_sym___stdcall] = ACTIONS(1060), - [anon_sym___fastcall] = ACTIONS(1060), - [anon_sym___thiscall] = ACTIONS(1060), - [anon_sym___vectorcall] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_static] = ACTIONS(1060), - [anon_sym_auto] = ACTIONS(1060), - [anon_sym_register] = ACTIONS(1060), - [anon_sym_inline] = ACTIONS(1060), - [anon_sym_const] = ACTIONS(1060), - [anon_sym_volatile] = ACTIONS(1060), - [anon_sym_restrict] = ACTIONS(1060), - [anon_sym___restrict__] = ACTIONS(1060), - [anon_sym__Atomic] = ACTIONS(1060), - [anon_sym__Noreturn] = ACTIONS(1060), - [anon_sym_signed] = ACTIONS(1060), - [anon_sym_unsigned] = ACTIONS(1060), - [anon_sym_long] = ACTIONS(1060), - [anon_sym_short] = ACTIONS(1060), - [sym_primitive_type] = ACTIONS(1060), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_struct] = ACTIONS(1060), - [anon_sym_union] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_switch] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_default] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_break] = ACTIONS(1060), - [anon_sym_continue] = ACTIONS(1060), - [anon_sym_goto] = ACTIONS(1060), - [anon_sym_DASH_DASH] = ACTIONS(1062), - [anon_sym_PLUS_PLUS] = ACTIONS(1062), - [anon_sym_sizeof] = ACTIONS(1060), - [anon_sym__Generic] = ACTIONS(1060), - [sym_number_literal] = ACTIONS(1062), - [anon_sym_L_SQUOTE] = ACTIONS(1062), - [anon_sym_u_SQUOTE] = ACTIONS(1062), - [anon_sym_U_SQUOTE] = ACTIONS(1062), - [anon_sym_u8_SQUOTE] = ACTIONS(1062), - [anon_sym_SQUOTE] = ACTIONS(1062), - [anon_sym_L_DQUOTE] = ACTIONS(1062), - [anon_sym_u_DQUOTE] = ACTIONS(1062), - [anon_sym_U_DQUOTE] = ACTIONS(1062), - [anon_sym_u8_DQUOTE] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1062), - [sym_true] = ACTIONS(1060), - [sym_false] = ACTIONS(1060), - [sym_null] = ACTIONS(1060), - [sym_comment] = ACTIONS(3), - }, - [324] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [343] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(187), - [sym_attributed_statement] = STATE(187), - [sym_labeled_statement] = STATE(187), - [sym_expression_statement] = STATE(187), - [sym_if_statement] = STATE(187), - [sym_switch_statement] = STATE(187), - [sym_case_statement] = STATE(187), - [sym_while_statement] = STATE(187), - [sym_do_statement] = STATE(187), - [sym_for_statement] = STATE(187), - [sym_return_statement] = STATE(187), - [sym_break_statement] = STATE(187), - [sym_continue_statement] = STATE(187), - [sym_goto_statement] = STATE(187), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [344] = { + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_LPAREN2] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_typedef] = ACTIONS(1072), + [anon_sym_extern] = ACTIONS(1072), + [anon_sym___attribute__] = ACTIONS(1072), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), + [anon_sym___declspec] = ACTIONS(1072), + [anon_sym___cdecl] = ACTIONS(1072), + [anon_sym___clrcall] = ACTIONS(1072), + [anon_sym___stdcall] = ACTIONS(1072), + [anon_sym___fastcall] = ACTIONS(1072), + [anon_sym___thiscall] = ACTIONS(1072), + [anon_sym___vectorcall] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_static] = ACTIONS(1072), + [anon_sym_auto] = ACTIONS(1072), + [anon_sym_register] = ACTIONS(1072), + [anon_sym_inline] = ACTIONS(1072), + [anon_sym_const] = ACTIONS(1072), + [anon_sym_volatile] = ACTIONS(1072), + [anon_sym_restrict] = ACTIONS(1072), + [anon_sym___restrict__] = ACTIONS(1072), + [anon_sym__Atomic] = ACTIONS(1072), + [anon_sym__Noreturn] = ACTIONS(1072), + [anon_sym_signed] = ACTIONS(1072), + [anon_sym_unsigned] = ACTIONS(1072), + [anon_sym_long] = ACTIONS(1072), + [anon_sym_short] = ACTIONS(1072), + [sym_primitive_type] = ACTIONS(1072), + [anon_sym_enum] = ACTIONS(1072), + [anon_sym_struct] = ACTIONS(1072), + [anon_sym_union] = ACTIONS(1072), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_switch] = ACTIONS(1072), + [anon_sym_case] = ACTIONS(1072), + [anon_sym_default] = ACTIONS(1072), + [anon_sym_while] = ACTIONS(1072), + [anon_sym_do] = ACTIONS(1072), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1072), + [anon_sym_break] = ACTIONS(1072), + [anon_sym_continue] = ACTIONS(1072), + [anon_sym_goto] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(1074), + [anon_sym_PLUS_PLUS] = ACTIONS(1074), + [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), + [anon_sym__Generic] = ACTIONS(1072), + [sym_number_literal] = ACTIONS(1074), + [anon_sym_L_SQUOTE] = ACTIONS(1074), + [anon_sym_u_SQUOTE] = ACTIONS(1074), + [anon_sym_U_SQUOTE] = ACTIONS(1074), + [anon_sym_u8_SQUOTE] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_L_DQUOTE] = ACTIONS(1074), + [anon_sym_u_DQUOTE] = ACTIONS(1074), + [anon_sym_U_DQUOTE] = ACTIONS(1074), + [anon_sym_u8_DQUOTE] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym_true] = ACTIONS(1072), + [sym_false] = ACTIONS(1072), + [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(220), - [sym_attributed_statement] = STATE(220), - [sym_labeled_statement] = STATE(220), - [sym_expression_statement] = STATE(220), - [sym_if_statement] = STATE(220), - [sym_switch_statement] = STATE(220), - [sym_case_statement] = STATE(220), - [sym_while_statement] = STATE(220), - [sym_do_statement] = STATE(220), - [sym_for_statement] = STATE(220), - [sym_return_statement] = STATE(220), - [sym_break_statement] = STATE(220), - [sym_continue_statement] = STATE(220), - [sym_goto_statement] = STATE(220), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [345] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym___restrict__] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym__Noreturn] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_offsetof] = ACTIONS(1052), + [anon_sym__Generic] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [346] = { + [sym_identifier] = ACTIONS(1104), + [aux_sym_preproc_include_token1] = ACTIONS(1104), + [aux_sym_preproc_def_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token1] = ACTIONS(1104), + [aux_sym_preproc_if_token2] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1104), + [sym_preproc_directive] = ACTIONS(1104), + [anon_sym_LPAREN2] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1104), + [anon_sym_PLUS] = ACTIONS(1104), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym___attribute__] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1106), + [anon_sym___declspec] = ACTIONS(1104), + [anon_sym___cdecl] = ACTIONS(1104), + [anon_sym___clrcall] = ACTIONS(1104), + [anon_sym___stdcall] = ACTIONS(1104), + [anon_sym___fastcall] = ACTIONS(1104), + [anon_sym___thiscall] = ACTIONS(1104), + [anon_sym___vectorcall] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_volatile] = ACTIONS(1104), + [anon_sym_restrict] = ACTIONS(1104), + [anon_sym___restrict__] = ACTIONS(1104), + [anon_sym__Atomic] = ACTIONS(1104), + [anon_sym__Noreturn] = ACTIONS(1104), + [anon_sym_signed] = ACTIONS(1104), + [anon_sym_unsigned] = ACTIONS(1104), + [anon_sym_long] = ACTIONS(1104), + [anon_sym_short] = ACTIONS(1104), + [sym_primitive_type] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_do] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1104), + [anon_sym_DASH_DASH] = ACTIONS(1106), + [anon_sym_PLUS_PLUS] = ACTIONS(1106), + [anon_sym_sizeof] = ACTIONS(1104), + [anon_sym_offsetof] = ACTIONS(1104), + [anon_sym__Generic] = ACTIONS(1104), + [sym_number_literal] = ACTIONS(1106), + [anon_sym_L_SQUOTE] = ACTIONS(1106), + [anon_sym_u_SQUOTE] = ACTIONS(1106), + [anon_sym_U_SQUOTE] = ACTIONS(1106), + [anon_sym_u8_SQUOTE] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_L_DQUOTE] = ACTIONS(1106), + [anon_sym_u_DQUOTE] = ACTIONS(1106), + [anon_sym_U_DQUOTE] = ACTIONS(1106), + [anon_sym_u8_DQUOTE] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [sym_true] = ACTIONS(1104), + [sym_false] = ACTIONS(1104), + [sym_null] = ACTIONS(1104), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_identifier] = ACTIONS(1092), - [aux_sym_preproc_include_token1] = ACTIONS(1092), - [aux_sym_preproc_def_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token1] = ACTIONS(1092), - [aux_sym_preproc_if_token2] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), - [sym_preproc_directive] = ACTIONS(1092), - [anon_sym_LPAREN2] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1094), - [anon_sym_AMP] = ACTIONS(1094), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_typedef] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(1092), - [anon_sym___attribute__] = ACTIONS(1092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), - [anon_sym___declspec] = ACTIONS(1092), - [anon_sym___cdecl] = ACTIONS(1092), - [anon_sym___clrcall] = ACTIONS(1092), - [anon_sym___stdcall] = ACTIONS(1092), - [anon_sym___fastcall] = ACTIONS(1092), - [anon_sym___thiscall] = ACTIONS(1092), - [anon_sym___vectorcall] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_auto] = ACTIONS(1092), - [anon_sym_register] = ACTIONS(1092), - [anon_sym_inline] = ACTIONS(1092), - [anon_sym_const] = ACTIONS(1092), - [anon_sym_volatile] = ACTIONS(1092), - [anon_sym_restrict] = ACTIONS(1092), - [anon_sym___restrict__] = ACTIONS(1092), - [anon_sym__Atomic] = ACTIONS(1092), - [anon_sym__Noreturn] = ACTIONS(1092), - [anon_sym_signed] = ACTIONS(1092), - [anon_sym_unsigned] = ACTIONS(1092), - [anon_sym_long] = ACTIONS(1092), - [anon_sym_short] = ACTIONS(1092), - [sym_primitive_type] = ACTIONS(1092), - [anon_sym_enum] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_union] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_switch] = ACTIONS(1092), - [anon_sym_case] = ACTIONS(1092), - [anon_sym_default] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_do] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_goto] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1094), - [anon_sym_sizeof] = ACTIONS(1092), - [anon_sym__Generic] = ACTIONS(1092), - [sym_number_literal] = ACTIONS(1094), - [anon_sym_L_SQUOTE] = ACTIONS(1094), - [anon_sym_u_SQUOTE] = ACTIONS(1094), - [anon_sym_U_SQUOTE] = ACTIONS(1094), - [anon_sym_u8_SQUOTE] = ACTIONS(1094), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_L_DQUOTE] = ACTIONS(1094), - [anon_sym_u_DQUOTE] = ACTIONS(1094), - [anon_sym_U_DQUOTE] = ACTIONS(1094), - [anon_sym_u8_DQUOTE] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1094), - [sym_true] = ACTIONS(1092), - [sym_false] = ACTIONS(1092), - [sym_null] = ACTIONS(1092), + [347] = { + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(1056), + [aux_sym_preproc_def_token1] = ACTIONS(1056), + [aux_sym_preproc_if_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), + [sym_preproc_directive] = ACTIONS(1056), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym___attribute__] = ACTIONS(1056), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), + [anon_sym___declspec] = ACTIONS(1056), + [anon_sym___cdecl] = ACTIONS(1056), + [anon_sym___clrcall] = ACTIONS(1056), + [anon_sym___stdcall] = ACTIONS(1056), + [anon_sym___fastcall] = ACTIONS(1056), + [anon_sym___thiscall] = ACTIONS(1056), + [anon_sym___vectorcall] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1056), + [anon_sym_auto] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_inline] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_volatile] = ACTIONS(1056), + [anon_sym_restrict] = ACTIONS(1056), + [anon_sym___restrict__] = ACTIONS(1056), + [anon_sym__Atomic] = ACTIONS(1056), + [anon_sym__Noreturn] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(1056), + [anon_sym_unsigned] = ACTIONS(1056), + [anon_sym_long] = ACTIONS(1056), + [anon_sym_short] = ACTIONS(1056), + [sym_primitive_type] = ACTIONS(1056), + [anon_sym_enum] = ACTIONS(1056), + [anon_sym_struct] = ACTIONS(1056), + [anon_sym_union] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_switch] = ACTIONS(1056), + [anon_sym_case] = ACTIONS(1056), + [anon_sym_default] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_goto] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_PLUS_PLUS] = ACTIONS(1058), + [anon_sym_sizeof] = ACTIONS(1056), + [anon_sym_offsetof] = ACTIONS(1056), + [anon_sym__Generic] = ACTIONS(1056), + [sym_number_literal] = ACTIONS(1058), + [anon_sym_L_SQUOTE] = ACTIONS(1058), + [anon_sym_u_SQUOTE] = ACTIONS(1058), + [anon_sym_U_SQUOTE] = ACTIONS(1058), + [anon_sym_u8_SQUOTE] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_L_DQUOTE] = ACTIONS(1058), + [anon_sym_u_DQUOTE] = ACTIONS(1058), + [anon_sym_U_DQUOTE] = ACTIONS(1058), + [anon_sym_u8_DQUOTE] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1096), - [aux_sym_preproc_include_token1] = ACTIONS(1096), - [aux_sym_preproc_def_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token1] = ACTIONS(1096), - [aux_sym_preproc_if_token2] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), - [sym_preproc_directive] = ACTIONS(1096), - [anon_sym_LPAREN2] = ACTIONS(1098), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PLUS] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym___attribute__] = ACTIONS(1096), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), - [anon_sym___declspec] = ACTIONS(1096), - [anon_sym___cdecl] = ACTIONS(1096), - [anon_sym___clrcall] = ACTIONS(1096), - [anon_sym___stdcall] = ACTIONS(1096), - [anon_sym___fastcall] = ACTIONS(1096), - [anon_sym___thiscall] = ACTIONS(1096), - [anon_sym___vectorcall] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_auto] = ACTIONS(1096), - [anon_sym_register] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_volatile] = ACTIONS(1096), - [anon_sym_restrict] = ACTIONS(1096), - [anon_sym___restrict__] = ACTIONS(1096), - [anon_sym__Atomic] = ACTIONS(1096), - [anon_sym__Noreturn] = ACTIONS(1096), - [anon_sym_signed] = ACTIONS(1096), - [anon_sym_unsigned] = ACTIONS(1096), - [anon_sym_long] = ACTIONS(1096), - [anon_sym_short] = ACTIONS(1096), - [sym_primitive_type] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_struct] = ACTIONS(1096), - [anon_sym_union] = ACTIONS(1096), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_switch] = ACTIONS(1096), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1098), - [anon_sym_PLUS_PLUS] = ACTIONS(1098), - [anon_sym_sizeof] = ACTIONS(1096), - [anon_sym__Generic] = ACTIONS(1096), - [sym_number_literal] = ACTIONS(1098), - [anon_sym_L_SQUOTE] = ACTIONS(1098), - [anon_sym_u_SQUOTE] = ACTIONS(1098), - [anon_sym_U_SQUOTE] = ACTIONS(1098), - [anon_sym_u8_SQUOTE] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_L_DQUOTE] = ACTIONS(1098), - [anon_sym_u_DQUOTE] = ACTIONS(1098), - [anon_sym_U_DQUOTE] = ACTIONS(1098), - [anon_sym_u8_DQUOTE] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [sym_true] = ACTIONS(1096), - [sym_false] = ACTIONS(1096), - [sym_null] = ACTIONS(1096), - [sym_comment] = ACTIONS(3), - }, - [330] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(174), - [sym_attributed_statement] = STATE(174), - [sym_labeled_statement] = STATE(174), - [sym_expression_statement] = STATE(174), - [sym_if_statement] = STATE(174), - [sym_switch_statement] = STATE(174), - [sym_case_statement] = STATE(174), - [sym_while_statement] = STATE(174), - [sym_do_statement] = STATE(174), - [sym_for_statement] = STATE(174), - [sym_return_statement] = STATE(174), - [sym_break_statement] = STATE(174), - [sym_continue_statement] = STATE(174), - [sym_goto_statement] = STATE(174), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token2] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym___restrict__] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym__Noreturn] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [anon_sym__Generic] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [348] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym___restrict__] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym__Noreturn] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), + [anon_sym__Generic] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [332] = { - [sym_identifier] = ACTIONS(1088), - [aux_sym_preproc_include_token1] = ACTIONS(1088), - [aux_sym_preproc_def_token1] = ACTIONS(1088), - [aux_sym_preproc_if_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), - [sym_preproc_directive] = ACTIONS(1088), - [anon_sym_LPAREN2] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1090), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_typedef] = ACTIONS(1088), - [anon_sym_extern] = ACTIONS(1088), - [anon_sym___attribute__] = ACTIONS(1088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), - [anon_sym___declspec] = ACTIONS(1088), - [anon_sym___cdecl] = ACTIONS(1088), - [anon_sym___clrcall] = ACTIONS(1088), - [anon_sym___stdcall] = ACTIONS(1088), - [anon_sym___fastcall] = ACTIONS(1088), - [anon_sym___thiscall] = ACTIONS(1088), - [anon_sym___vectorcall] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_static] = ACTIONS(1088), - [anon_sym_auto] = ACTIONS(1088), - [anon_sym_register] = ACTIONS(1088), - [anon_sym_inline] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(1088), - [anon_sym_volatile] = ACTIONS(1088), - [anon_sym_restrict] = ACTIONS(1088), - [anon_sym___restrict__] = ACTIONS(1088), - [anon_sym__Atomic] = ACTIONS(1088), - [anon_sym__Noreturn] = ACTIONS(1088), - [anon_sym_signed] = ACTIONS(1088), - [anon_sym_unsigned] = ACTIONS(1088), - [anon_sym_long] = ACTIONS(1088), - [anon_sym_short] = ACTIONS(1088), - [sym_primitive_type] = ACTIONS(1088), - [anon_sym_enum] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_union] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(1088), - [anon_sym_case] = ACTIONS(1088), - [anon_sym_default] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_do] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_goto] = ACTIONS(1088), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_sizeof] = ACTIONS(1088), - [anon_sym__Generic] = ACTIONS(1088), - [sym_number_literal] = ACTIONS(1090), - [anon_sym_L_SQUOTE] = ACTIONS(1090), - [anon_sym_u_SQUOTE] = ACTIONS(1090), - [anon_sym_U_SQUOTE] = ACTIONS(1090), - [anon_sym_u8_SQUOTE] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1090), - [anon_sym_L_DQUOTE] = ACTIONS(1090), - [anon_sym_u_DQUOTE] = ACTIONS(1090), - [anon_sym_U_DQUOTE] = ACTIONS(1090), - [anon_sym_u8_DQUOTE] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_true] = ACTIONS(1088), - [sym_false] = ACTIONS(1088), - [sym_null] = ACTIONS(1088), + [349] = { + [ts_builtin_sym_end] = ACTIONS(1070), + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym___restrict__] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym__Noreturn] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), + [anon_sym__Generic] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [333] = { + [350] = { + [ts_builtin_sym_end] = ACTIONS(1062), [sym_identifier] = ACTIONS(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), [aux_sym_preproc_def_token1] = ACTIONS(1060), @@ -42830,7 +44615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1060), [anon_sym___vectorcall] = ACTIONS(1060), [anon_sym_LBRACE] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1062), [anon_sym_static] = ACTIONS(1060), [anon_sym_auto] = ACTIONS(1060), [anon_sym_register] = ACTIONS(1060), @@ -42863,6 +44647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1062), [anon_sym_PLUS_PLUS] = ACTIONS(1062), [anon_sym_sizeof] = ACTIONS(1060), + [anon_sym_offsetof] = ACTIONS(1060), [anon_sym__Generic] = ACTIONS(1060), [sym_number_literal] = ACTIONS(1062), [anon_sym_L_SQUOTE] = ACTIONS(1062), @@ -42880,1255 +44665,639 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1060), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(125), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(125), - [sym_expression_statement] = STATE(125), - [sym_if_statement] = STATE(125), - [sym_switch_statement] = STATE(125), - [sym_case_statement] = STATE(125), - [sym_while_statement] = STATE(125), - [sym_do_statement] = STATE(125), - [sym_for_statement] = STATE(125), - [sym_return_statement] = STATE(125), - [sym_break_statement] = STATE(125), - [sym_continue_statement] = STATE(125), - [sym_goto_statement] = STATE(125), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(146), - [sym_attributed_statement] = STATE(146), - [sym_labeled_statement] = STATE(146), - [sym_expression_statement] = STATE(146), - [sym_if_statement] = STATE(146), - [sym_switch_statement] = STATE(146), - [sym_case_statement] = STATE(146), - [sym_while_statement] = STATE(146), - [sym_do_statement] = STATE(146), - [sym_for_statement] = STATE(146), - [sym_return_statement] = STATE(146), - [sym_break_statement] = STATE(146), - [sym_continue_statement] = STATE(146), - [sym_goto_statement] = STATE(146), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1052), - [aux_sym_preproc_include_token1] = ACTIONS(1052), - [aux_sym_preproc_def_token1] = ACTIONS(1052), - [aux_sym_preproc_if_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), - [sym_preproc_directive] = ACTIONS(1052), - [anon_sym_LPAREN2] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym___attribute__] = ACTIONS(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), - [anon_sym___declspec] = ACTIONS(1052), - [anon_sym___cdecl] = ACTIONS(1052), - [anon_sym___clrcall] = ACTIONS(1052), - [anon_sym___stdcall] = ACTIONS(1052), - [anon_sym___fastcall] = ACTIONS(1052), - [anon_sym___thiscall] = ACTIONS(1052), - [anon_sym___vectorcall] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1052), - [anon_sym_auto] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_inline] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_volatile] = ACTIONS(1052), - [anon_sym_restrict] = ACTIONS(1052), - [anon_sym___restrict__] = ACTIONS(1052), - [anon_sym__Atomic] = ACTIONS(1052), - [anon_sym__Noreturn] = ACTIONS(1052), - [anon_sym_signed] = ACTIONS(1052), - [anon_sym_unsigned] = ACTIONS(1052), - [anon_sym_long] = ACTIONS(1052), - [anon_sym_short] = ACTIONS(1052), - [sym_primitive_type] = ACTIONS(1052), - [anon_sym_enum] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1052), - [anon_sym_case] = ACTIONS(1052), - [anon_sym_default] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), - [anon_sym_sizeof] = ACTIONS(1052), - [anon_sym__Generic] = ACTIONS(1052), - [sym_number_literal] = ACTIONS(1054), - [anon_sym_L_SQUOTE] = ACTIONS(1054), - [anon_sym_u_SQUOTE] = ACTIONS(1054), - [anon_sym_U_SQUOTE] = ACTIONS(1054), - [anon_sym_u8_SQUOTE] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_L_DQUOTE] = ACTIONS(1054), - [anon_sym_u_DQUOTE] = ACTIONS(1054), - [anon_sym_U_DQUOTE] = ACTIONS(1054), - [anon_sym_u8_DQUOTE] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_true] = ACTIONS(1052), - [sym_false] = ACTIONS(1052), - [sym_null] = ACTIONS(1052), - [sym_comment] = ACTIONS(3), - }, - [338] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [339] = { - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(199), - [sym_attributed_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), + [351] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_attribute_declaration] = STATE(243), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(808), - [sym_comma_expression] = STATE(1374), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1142), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_switch] = ACTIONS(121), - [anon_sym_case] = ACTIONS(123), - [anon_sym_default] = ACTIONS(125), - [anon_sym_while] = ACTIONS(127), - [anon_sym_do] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(133), - [anon_sym_break] = ACTIONS(135), - [anon_sym_continue] = ACTIONS(137), - [anon_sym_goto] = ACTIONS(139), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [352] = { + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym___restrict__] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym__Noreturn] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), + [anon_sym__Generic] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1064), - [aux_sym_preproc_include_token1] = ACTIONS(1064), - [aux_sym_preproc_def_token1] = ACTIONS(1064), - [aux_sym_preproc_if_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), - [sym_preproc_directive] = ACTIONS(1064), - [anon_sym_LPAREN2] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_TILDE] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1066), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(1064), - [anon_sym___attribute__] = ACTIONS(1064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), - [anon_sym___declspec] = ACTIONS(1064), - [anon_sym___cdecl] = ACTIONS(1064), - [anon_sym___clrcall] = ACTIONS(1064), - [anon_sym___stdcall] = ACTIONS(1064), - [anon_sym___fastcall] = ACTIONS(1064), - [anon_sym___thiscall] = ACTIONS(1064), - [anon_sym___vectorcall] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1066), - [anon_sym_static] = ACTIONS(1064), - [anon_sym_auto] = ACTIONS(1064), - [anon_sym_register] = ACTIONS(1064), - [anon_sym_inline] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(1064), - [anon_sym_volatile] = ACTIONS(1064), - [anon_sym_restrict] = ACTIONS(1064), - [anon_sym___restrict__] = ACTIONS(1064), - [anon_sym__Atomic] = ACTIONS(1064), - [anon_sym__Noreturn] = ACTIONS(1064), - [anon_sym_signed] = ACTIONS(1064), - [anon_sym_unsigned] = ACTIONS(1064), - [anon_sym_long] = ACTIONS(1064), - [anon_sym_short] = ACTIONS(1064), - [sym_primitive_type] = ACTIONS(1064), - [anon_sym_enum] = ACTIONS(1064), - [anon_sym_struct] = ACTIONS(1064), - [anon_sym_union] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_switch] = ACTIONS(1064), - [anon_sym_case] = ACTIONS(1064), - [anon_sym_default] = ACTIONS(1064), - [anon_sym_while] = ACTIONS(1064), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_goto] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1066), - [anon_sym_PLUS_PLUS] = ACTIONS(1066), - [anon_sym_sizeof] = ACTIONS(1064), - [anon_sym__Generic] = ACTIONS(1064), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_L_SQUOTE] = ACTIONS(1066), - [anon_sym_u_SQUOTE] = ACTIONS(1066), - [anon_sym_U_SQUOTE] = ACTIONS(1066), - [anon_sym_u8_SQUOTE] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(1066), - [anon_sym_L_DQUOTE] = ACTIONS(1066), - [anon_sym_u_DQUOTE] = ACTIONS(1066), - [anon_sym_U_DQUOTE] = ACTIONS(1066), - [anon_sym_u8_DQUOTE] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_true] = ACTIONS(1064), - [sym_false] = ACTIONS(1064), - [sym_null] = ACTIONS(1064), + [353] = { + [sym_identifier] = ACTIONS(1088), + [aux_sym_preproc_include_token1] = ACTIONS(1088), + [aux_sym_preproc_def_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token1] = ACTIONS(1088), + [aux_sym_preproc_if_token2] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1088), + [sym_preproc_directive] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1088), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym___attribute__] = ACTIONS(1088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1090), + [anon_sym___declspec] = ACTIONS(1088), + [anon_sym___cdecl] = ACTIONS(1088), + [anon_sym___clrcall] = ACTIONS(1088), + [anon_sym___stdcall] = ACTIONS(1088), + [anon_sym___fastcall] = ACTIONS(1088), + [anon_sym___thiscall] = ACTIONS(1088), + [anon_sym___vectorcall] = ACTIONS(1088), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_auto] = ACTIONS(1088), + [anon_sym_register] = ACTIONS(1088), + [anon_sym_inline] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_volatile] = ACTIONS(1088), + [anon_sym_restrict] = ACTIONS(1088), + [anon_sym___restrict__] = ACTIONS(1088), + [anon_sym__Atomic] = ACTIONS(1088), + [anon_sym__Noreturn] = ACTIONS(1088), + [anon_sym_signed] = ACTIONS(1088), + [anon_sym_unsigned] = ACTIONS(1088), + [anon_sym_long] = ACTIONS(1088), + [anon_sym_short] = ACTIONS(1088), + [sym_primitive_type] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_do] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_PLUS_PLUS] = ACTIONS(1090), + [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), + [anon_sym__Generic] = ACTIONS(1088), + [sym_number_literal] = ACTIONS(1090), + [anon_sym_L_SQUOTE] = ACTIONS(1090), + [anon_sym_u_SQUOTE] = ACTIONS(1090), + [anon_sym_U_SQUOTE] = ACTIONS(1090), + [anon_sym_u8_SQUOTE] = ACTIONS(1090), + [anon_sym_SQUOTE] = ACTIONS(1090), + [anon_sym_L_DQUOTE] = ACTIONS(1090), + [anon_sym_u_DQUOTE] = ACTIONS(1090), + [anon_sym_U_DQUOTE] = ACTIONS(1090), + [anon_sym_u8_DQUOTE] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym_true] = ACTIONS(1088), + [sym_false] = ACTIONS(1088), + [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(1387), - [sym_attributed_statement] = STATE(1387), - [sym_labeled_statement] = STATE(1387), - [sym_expression_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_switch_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_do_statement] = STATE(1387), - [sym_for_statement] = STATE(1387), - [sym_return_statement] = STATE(1387), - [sym_break_statement] = STATE(1387), - [sym_continue_statement] = STATE(1387), - [sym_goto_statement] = STATE(1387), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [354] = { + [sym_identifier] = ACTIONS(1076), + [aux_sym_preproc_include_token1] = ACTIONS(1076), + [aux_sym_preproc_def_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token1] = ACTIONS(1076), + [aux_sym_preproc_if_token2] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), + [sym_preproc_directive] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym___attribute__] = ACTIONS(1076), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), + [anon_sym___declspec] = ACTIONS(1076), + [anon_sym___cdecl] = ACTIONS(1076), + [anon_sym___clrcall] = ACTIONS(1076), + [anon_sym___stdcall] = ACTIONS(1076), + [anon_sym___fastcall] = ACTIONS(1076), + [anon_sym___thiscall] = ACTIONS(1076), + [anon_sym___vectorcall] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_auto] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_inline] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_volatile] = ACTIONS(1076), + [anon_sym_restrict] = ACTIONS(1076), + [anon_sym___restrict__] = ACTIONS(1076), + [anon_sym__Atomic] = ACTIONS(1076), + [anon_sym__Noreturn] = ACTIONS(1076), + [anon_sym_signed] = ACTIONS(1076), + [anon_sym_unsigned] = ACTIONS(1076), + [anon_sym_long] = ACTIONS(1076), + [anon_sym_short] = ACTIONS(1076), + [sym_primitive_type] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_switch] = ACTIONS(1076), + [anon_sym_case] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_goto] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_PLUS_PLUS] = ACTIONS(1078), + [anon_sym_sizeof] = ACTIONS(1076), + [anon_sym_offsetof] = ACTIONS(1076), + [anon_sym__Generic] = ACTIONS(1076), + [sym_number_literal] = ACTIONS(1078), + [anon_sym_L_SQUOTE] = ACTIONS(1078), + [anon_sym_u_SQUOTE] = ACTIONS(1078), + [anon_sym_U_SQUOTE] = ACTIONS(1078), + [anon_sym_u8_SQUOTE] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_L_DQUOTE] = ACTIONS(1078), + [anon_sym_u_DQUOTE] = ACTIONS(1078), + [anon_sym_U_DQUOTE] = ACTIONS(1078), + [anon_sym_u8_DQUOTE] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym_true] = ACTIONS(1076), + [sym_false] = ACTIONS(1076), + [sym_null] = ACTIONS(1076), [sym_comment] = ACTIONS(3), }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1036), - [aux_sym_preproc_include_token1] = ACTIONS(1036), - [aux_sym_preproc_def_token1] = ACTIONS(1036), - [aux_sym_preproc_if_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1036), - [sym_preproc_directive] = ACTIONS(1036), - [anon_sym_LPAREN2] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_TILDE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_typedef] = ACTIONS(1036), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1038), - [anon_sym___declspec] = ACTIONS(1036), - [anon_sym___cdecl] = ACTIONS(1036), - [anon_sym___clrcall] = ACTIONS(1036), - [anon_sym___stdcall] = ACTIONS(1036), - [anon_sym___fastcall] = ACTIONS(1036), - [anon_sym___thiscall] = ACTIONS(1036), - [anon_sym___vectorcall] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1036), - [anon_sym_auto] = ACTIONS(1036), - [anon_sym_register] = ACTIONS(1036), - [anon_sym_inline] = ACTIONS(1036), - [anon_sym_const] = ACTIONS(1036), - [anon_sym_volatile] = ACTIONS(1036), - [anon_sym_restrict] = ACTIONS(1036), - [anon_sym___restrict__] = ACTIONS(1036), - [anon_sym__Atomic] = ACTIONS(1036), - [anon_sym__Noreturn] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(1036), - [anon_sym_unsigned] = ACTIONS(1036), - [anon_sym_long] = ACTIONS(1036), - [anon_sym_short] = ACTIONS(1036), - [sym_primitive_type] = ACTIONS(1036), - [anon_sym_enum] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_case] = ACTIONS(1036), - [anon_sym_default] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_do] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_PLUS_PLUS] = ACTIONS(1038), - [anon_sym_sizeof] = ACTIONS(1036), - [anon_sym__Generic] = ACTIONS(1036), - [sym_number_literal] = ACTIONS(1038), - [anon_sym_L_SQUOTE] = ACTIONS(1038), - [anon_sym_u_SQUOTE] = ACTIONS(1038), - [anon_sym_U_SQUOTE] = ACTIONS(1038), - [anon_sym_u8_SQUOTE] = ACTIONS(1038), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_L_DQUOTE] = ACTIONS(1038), - [anon_sym_u_DQUOTE] = ACTIONS(1038), - [anon_sym_U_DQUOTE] = ACTIONS(1038), - [anon_sym_u8_DQUOTE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), + [355] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1084), + [aux_sym_preproc_include_token1] = ACTIONS(1084), + [aux_sym_preproc_def_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), + [sym_preproc_directive] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_TILDE] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym___attribute__] = ACTIONS(1084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1086), + [anon_sym___declspec] = ACTIONS(1084), + [anon_sym___cdecl] = ACTIONS(1084), + [anon_sym___clrcall] = ACTIONS(1084), + [anon_sym___stdcall] = ACTIONS(1084), + [anon_sym___fastcall] = ACTIONS(1084), + [anon_sym___thiscall] = ACTIONS(1084), + [anon_sym___vectorcall] = ACTIONS(1084), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_auto] = ACTIONS(1084), + [anon_sym_register] = ACTIONS(1084), + [anon_sym_inline] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_volatile] = ACTIONS(1084), + [anon_sym_restrict] = ACTIONS(1084), + [anon_sym___restrict__] = ACTIONS(1084), + [anon_sym__Atomic] = ACTIONS(1084), + [anon_sym__Noreturn] = ACTIONS(1084), + [anon_sym_signed] = ACTIONS(1084), + [anon_sym_unsigned] = ACTIONS(1084), + [anon_sym_long] = ACTIONS(1084), + [anon_sym_short] = ACTIONS(1084), + [sym_primitive_type] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_case] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_do] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_DASH_DASH] = ACTIONS(1086), + [anon_sym_PLUS_PLUS] = ACTIONS(1086), + [anon_sym_sizeof] = ACTIONS(1084), + [anon_sym_offsetof] = ACTIONS(1084), + [anon_sym__Generic] = ACTIONS(1084), + [sym_number_literal] = ACTIONS(1086), + [anon_sym_L_SQUOTE] = ACTIONS(1086), + [anon_sym_u_SQUOTE] = ACTIONS(1086), + [anon_sym_U_SQUOTE] = ACTIONS(1086), + [anon_sym_u8_SQUOTE] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1086), + [anon_sym_L_DQUOTE] = ACTIONS(1086), + [anon_sym_u_DQUOTE] = ACTIONS(1086), + [anon_sym_U_DQUOTE] = ACTIONS(1086), + [anon_sym_u8_DQUOTE] = ACTIONS(1086), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_true] = ACTIONS(1084), + [sym_false] = ACTIONS(1084), + [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1080), - [aux_sym_preproc_include_token1] = ACTIONS(1080), - [aux_sym_preproc_def_token1] = ACTIONS(1080), - [aux_sym_preproc_if_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), - [sym_preproc_directive] = ACTIONS(1080), - [anon_sym_LPAREN2] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_typedef] = ACTIONS(1080), - [anon_sym_extern] = ACTIONS(1080), - [anon_sym___attribute__] = ACTIONS(1080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), - [anon_sym___declspec] = ACTIONS(1080), - [anon_sym___cdecl] = ACTIONS(1080), - [anon_sym___clrcall] = ACTIONS(1080), - [anon_sym___stdcall] = ACTIONS(1080), - [anon_sym___fastcall] = ACTIONS(1080), - [anon_sym___thiscall] = ACTIONS(1080), - [anon_sym___vectorcall] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_static] = ACTIONS(1080), - [anon_sym_auto] = ACTIONS(1080), - [anon_sym_register] = ACTIONS(1080), - [anon_sym_inline] = ACTIONS(1080), - [anon_sym_const] = ACTIONS(1080), - [anon_sym_volatile] = ACTIONS(1080), - [anon_sym_restrict] = ACTIONS(1080), - [anon_sym___restrict__] = ACTIONS(1080), - [anon_sym__Atomic] = ACTIONS(1080), - [anon_sym__Noreturn] = ACTIONS(1080), - [anon_sym_signed] = ACTIONS(1080), - [anon_sym_unsigned] = ACTIONS(1080), - [anon_sym_long] = ACTIONS(1080), - [anon_sym_short] = ACTIONS(1080), - [sym_primitive_type] = ACTIONS(1080), - [anon_sym_enum] = ACTIONS(1080), - [anon_sym_struct] = ACTIONS(1080), - [anon_sym_union] = ACTIONS(1080), - [anon_sym_if] = ACTIONS(1080), - [anon_sym_switch] = ACTIONS(1080), - [anon_sym_case] = ACTIONS(1080), - [anon_sym_default] = ACTIONS(1080), - [anon_sym_while] = ACTIONS(1080), - [anon_sym_do] = ACTIONS(1080), - [anon_sym_for] = ACTIONS(1080), - [anon_sym_return] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1082), - [anon_sym_sizeof] = ACTIONS(1080), - [anon_sym__Generic] = ACTIONS(1080), - [sym_number_literal] = ACTIONS(1082), - [anon_sym_L_SQUOTE] = ACTIONS(1082), - [anon_sym_u_SQUOTE] = ACTIONS(1082), - [anon_sym_U_SQUOTE] = ACTIONS(1082), - [anon_sym_u8_SQUOTE] = ACTIONS(1082), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_L_DQUOTE] = ACTIONS(1082), - [anon_sym_u_DQUOTE] = ACTIONS(1082), - [anon_sym_U_DQUOTE] = ACTIONS(1082), - [anon_sym_u8_DQUOTE] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_true] = ACTIONS(1080), - [sym_false] = ACTIONS(1080), - [sym_null] = ACTIONS(1080), + [356] = { + [sym_identifier] = ACTIONS(1132), + [aux_sym_preproc_include_token1] = ACTIONS(1132), + [aux_sym_preproc_def_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token1] = ACTIONS(1132), + [aux_sym_preproc_if_token2] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1132), + [sym_preproc_directive] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_TILDE] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1132), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym___attribute__] = ACTIONS(1132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1134), + [anon_sym___declspec] = ACTIONS(1132), + [anon_sym___cdecl] = ACTIONS(1132), + [anon_sym___clrcall] = ACTIONS(1132), + [anon_sym___stdcall] = ACTIONS(1132), + [anon_sym___fastcall] = ACTIONS(1132), + [anon_sym___thiscall] = ACTIONS(1132), + [anon_sym___vectorcall] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_auto] = ACTIONS(1132), + [anon_sym_register] = ACTIONS(1132), + [anon_sym_inline] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_volatile] = ACTIONS(1132), + [anon_sym_restrict] = ACTIONS(1132), + [anon_sym___restrict__] = ACTIONS(1132), + [anon_sym__Atomic] = ACTIONS(1132), + [anon_sym__Noreturn] = ACTIONS(1132), + [anon_sym_signed] = ACTIONS(1132), + [anon_sym_unsigned] = ACTIONS(1132), + [anon_sym_long] = ACTIONS(1132), + [anon_sym_short] = ACTIONS(1132), + [sym_primitive_type] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_do] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_goto] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_sizeof] = ACTIONS(1132), + [anon_sym_offsetof] = ACTIONS(1132), + [anon_sym__Generic] = ACTIONS(1132), + [sym_number_literal] = ACTIONS(1134), + [anon_sym_L_SQUOTE] = ACTIONS(1134), + [anon_sym_u_SQUOTE] = ACTIONS(1134), + [anon_sym_U_SQUOTE] = ACTIONS(1134), + [anon_sym_u8_SQUOTE] = ACTIONS(1134), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_L_DQUOTE] = ACTIONS(1134), + [anon_sym_u_DQUOTE] = ACTIONS(1134), + [anon_sym_U_DQUOTE] = ACTIONS(1134), + [anon_sym_u8_DQUOTE] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(1134), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), [sym_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1040), - [aux_sym_preproc_include_token1] = ACTIONS(1040), - [aux_sym_preproc_def_token1] = ACTIONS(1040), - [aux_sym_preproc_if_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1040), - [sym_preproc_directive] = ACTIONS(1040), - [anon_sym_LPAREN2] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_typedef] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym___attribute__] = ACTIONS(1040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1042), - [anon_sym___declspec] = ACTIONS(1040), - [anon_sym___cdecl] = ACTIONS(1040), - [anon_sym___clrcall] = ACTIONS(1040), - [anon_sym___stdcall] = ACTIONS(1040), - [anon_sym___fastcall] = ACTIONS(1040), - [anon_sym___thiscall] = ACTIONS(1040), - [anon_sym___vectorcall] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1040), - [anon_sym_auto] = ACTIONS(1040), - [anon_sym_register] = ACTIONS(1040), - [anon_sym_inline] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_volatile] = ACTIONS(1040), - [anon_sym_restrict] = ACTIONS(1040), - [anon_sym___restrict__] = ACTIONS(1040), - [anon_sym__Atomic] = ACTIONS(1040), - [anon_sym__Noreturn] = ACTIONS(1040), - [anon_sym_signed] = ACTIONS(1040), - [anon_sym_unsigned] = ACTIONS(1040), - [anon_sym_long] = ACTIONS(1040), - [anon_sym_short] = ACTIONS(1040), - [sym_primitive_type] = ACTIONS(1040), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_union] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1042), - [anon_sym_sizeof] = ACTIONS(1040), - [anon_sym__Generic] = ACTIONS(1040), - [sym_number_literal] = ACTIONS(1042), - [anon_sym_L_SQUOTE] = ACTIONS(1042), - [anon_sym_u_SQUOTE] = ACTIONS(1042), - [anon_sym_U_SQUOTE] = ACTIONS(1042), - [anon_sym_u8_SQUOTE] = ACTIONS(1042), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_L_DQUOTE] = ACTIONS(1042), - [anon_sym_u_DQUOTE] = ACTIONS(1042), - [anon_sym_U_DQUOTE] = ACTIONS(1042), - [anon_sym_u8_DQUOTE] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_true] = ACTIONS(1040), - [sym_false] = ACTIONS(1040), - [sym_null] = ACTIONS(1040), + [357] = { + [sym_identifier] = ACTIONS(1068), + [aux_sym_preproc_include_token1] = ACTIONS(1068), + [aux_sym_preproc_def_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [sym_preproc_directive] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1070), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1070), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1070), + [anon_sym_typedef] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym___attribute__] = ACTIONS(1068), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), + [anon_sym___declspec] = ACTIONS(1068), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1070), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_auto] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_inline] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_volatile] = ACTIONS(1068), + [anon_sym_restrict] = ACTIONS(1068), + [anon_sym___restrict__] = ACTIONS(1068), + [anon_sym__Atomic] = ACTIONS(1068), + [anon_sym__Noreturn] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(1068), + [anon_sym_unsigned] = ACTIONS(1068), + [anon_sym_long] = ACTIONS(1068), + [anon_sym_short] = ACTIONS(1068), + [sym_primitive_type] = ACTIONS(1068), + [anon_sym_enum] = ACTIONS(1068), + [anon_sym_struct] = ACTIONS(1068), + [anon_sym_union] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(1068), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_goto] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PLUS_PLUS] = ACTIONS(1070), + [anon_sym_sizeof] = ACTIONS(1068), + [anon_sym_offsetof] = ACTIONS(1068), + [anon_sym__Generic] = ACTIONS(1068), + [sym_number_literal] = ACTIONS(1070), + [anon_sym_L_SQUOTE] = ACTIONS(1070), + [anon_sym_u_SQUOTE] = ACTIONS(1070), + [anon_sym_U_SQUOTE] = ACTIONS(1070), + [anon_sym_u8_SQUOTE] = ACTIONS(1070), + [anon_sym_SQUOTE] = ACTIONS(1070), + [anon_sym_L_DQUOTE] = ACTIONS(1070), + [anon_sym_u_DQUOTE] = ACTIONS(1070), + [anon_sym_U_DQUOTE] = ACTIONS(1070), + [anon_sym_u8_DQUOTE] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym_true] = ACTIONS(1068), + [sym_false] = ACTIONS(1068), + [sym_null] = ACTIONS(1068), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_LPAREN2] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1074), - [anon_sym_typedef] = ACTIONS(1072), - [anon_sym_extern] = ACTIONS(1072), - [anon_sym___attribute__] = ACTIONS(1072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1074), - [anon_sym___declspec] = ACTIONS(1072), - [anon_sym___cdecl] = ACTIONS(1072), - [anon_sym___clrcall] = ACTIONS(1072), - [anon_sym___stdcall] = ACTIONS(1072), - [anon_sym___fastcall] = ACTIONS(1072), - [anon_sym___thiscall] = ACTIONS(1072), - [anon_sym___vectorcall] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_auto] = ACTIONS(1072), - [anon_sym_register] = ACTIONS(1072), - [anon_sym_inline] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(1072), - [anon_sym_volatile] = ACTIONS(1072), - [anon_sym_restrict] = ACTIONS(1072), - [anon_sym___restrict__] = ACTIONS(1072), - [anon_sym__Atomic] = ACTIONS(1072), - [anon_sym__Noreturn] = ACTIONS(1072), - [anon_sym_signed] = ACTIONS(1072), - [anon_sym_unsigned] = ACTIONS(1072), - [anon_sym_long] = ACTIONS(1072), - [anon_sym_short] = ACTIONS(1072), - [sym_primitive_type] = ACTIONS(1072), - [anon_sym_enum] = ACTIONS(1072), - [anon_sym_struct] = ACTIONS(1072), - [anon_sym_union] = ACTIONS(1072), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_switch] = ACTIONS(1072), - [anon_sym_case] = ACTIONS(1072), - [anon_sym_default] = ACTIONS(1072), - [anon_sym_while] = ACTIONS(1072), - [anon_sym_do] = ACTIONS(1072), - [anon_sym_for] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1072), - [anon_sym_goto] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1074), - [anon_sym_PLUS_PLUS] = ACTIONS(1074), - [anon_sym_sizeof] = ACTIONS(1072), - [anon_sym__Generic] = ACTIONS(1072), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_L_SQUOTE] = ACTIONS(1074), - [anon_sym_u_SQUOTE] = ACTIONS(1074), - [anon_sym_U_SQUOTE] = ACTIONS(1074), - [anon_sym_u8_SQUOTE] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(1074), - [anon_sym_L_DQUOTE] = ACTIONS(1074), - [anon_sym_u_DQUOTE] = ACTIONS(1074), - [anon_sym_U_DQUOTE] = ACTIONS(1074), - [anon_sym_u8_DQUOTE] = ACTIONS(1074), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), + [358] = { + [sym_identifier] = ACTIONS(1136), + [aux_sym_preproc_include_token1] = ACTIONS(1136), + [aux_sym_preproc_def_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token1] = ACTIONS(1136), + [aux_sym_preproc_if_token2] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1136), + [sym_preproc_directive] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_TILDE] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1136), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1138), + [anon_sym___declspec] = ACTIONS(1136), + [anon_sym___cdecl] = ACTIONS(1136), + [anon_sym___clrcall] = ACTIONS(1136), + [anon_sym___stdcall] = ACTIONS(1136), + [anon_sym___fastcall] = ACTIONS(1136), + [anon_sym___thiscall] = ACTIONS(1136), + [anon_sym___vectorcall] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_auto] = ACTIONS(1136), + [anon_sym_register] = ACTIONS(1136), + [anon_sym_inline] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_volatile] = ACTIONS(1136), + [anon_sym_restrict] = ACTIONS(1136), + [anon_sym___restrict__] = ACTIONS(1136), + [anon_sym__Atomic] = ACTIONS(1136), + [anon_sym__Noreturn] = ACTIONS(1136), + [anon_sym_signed] = ACTIONS(1136), + [anon_sym_unsigned] = ACTIONS(1136), + [anon_sym_long] = ACTIONS(1136), + [anon_sym_short] = ACTIONS(1136), + [sym_primitive_type] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_do] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_sizeof] = ACTIONS(1136), + [anon_sym_offsetof] = ACTIONS(1136), + [anon_sym__Generic] = ACTIONS(1136), + [sym_number_literal] = ACTIONS(1138), + [anon_sym_L_SQUOTE] = ACTIONS(1138), + [anon_sym_u_SQUOTE] = ACTIONS(1138), + [anon_sym_U_SQUOTE] = ACTIONS(1138), + [anon_sym_u8_SQUOTE] = ACTIONS(1138), + [anon_sym_SQUOTE] = ACTIONS(1138), + [anon_sym_L_DQUOTE] = ACTIONS(1138), + [anon_sym_u_DQUOTE] = ACTIONS(1138), + [anon_sym_U_DQUOTE] = ACTIONS(1138), + [anon_sym_u8_DQUOTE] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_true] = ACTIONS(1136), + [sym_false] = ACTIONS(1136), + [sym_null] = ACTIONS(1136), [sym_comment] = ACTIONS(3), }, - [350] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1090), [sym_identifier] = ACTIONS(1088), [aux_sym_preproc_include_token1] = ACTIONS(1088), @@ -44189,6 +45358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1090), [anon_sym_PLUS_PLUS] = ACTIONS(1090), [anon_sym_sizeof] = ACTIONS(1088), + [anon_sym_offsetof] = ACTIONS(1088), [anon_sym__Generic] = ACTIONS(1088), [sym_number_literal] = ACTIONS(1090), [anon_sym_L_SQUOTE] = ACTIONS(1090), @@ -44206,631 +45376,639 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1088), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(182), - [sym_attributed_statement] = STATE(182), - [sym_labeled_statement] = STATE(182), - [sym_expression_statement] = STATE(182), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(182), - [sym_case_statement] = STATE(182), - [sym_while_statement] = STATE(182), - [sym_do_statement] = STATE(182), - [sym_for_statement] = STATE(182), - [sym_return_statement] = STATE(182), - [sym_break_statement] = STATE(182), - [sym_continue_statement] = STATE(182), - [sym_goto_statement] = STATE(182), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [360] = { + [sym_identifier] = ACTIONS(1096), + [aux_sym_preproc_include_token1] = ACTIONS(1096), + [aux_sym_preproc_def_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token1] = ACTIONS(1096), + [aux_sym_preproc_if_token2] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1096), + [sym_preproc_directive] = ACTIONS(1096), + [anon_sym_LPAREN2] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_TILDE] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1096), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym___attribute__] = ACTIONS(1096), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1098), + [anon_sym___declspec] = ACTIONS(1096), + [anon_sym___cdecl] = ACTIONS(1096), + [anon_sym___clrcall] = ACTIONS(1096), + [anon_sym___stdcall] = ACTIONS(1096), + [anon_sym___fastcall] = ACTIONS(1096), + [anon_sym___thiscall] = ACTIONS(1096), + [anon_sym___vectorcall] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_auto] = ACTIONS(1096), + [anon_sym_register] = ACTIONS(1096), + [anon_sym_inline] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_volatile] = ACTIONS(1096), + [anon_sym_restrict] = ACTIONS(1096), + [anon_sym___restrict__] = ACTIONS(1096), + [anon_sym__Atomic] = ACTIONS(1096), + [anon_sym__Noreturn] = ACTIONS(1096), + [anon_sym_signed] = ACTIONS(1096), + [anon_sym_unsigned] = ACTIONS(1096), + [anon_sym_long] = ACTIONS(1096), + [anon_sym_short] = ACTIONS(1096), + [sym_primitive_type] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_goto] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1098), + [anon_sym_PLUS_PLUS] = ACTIONS(1098), + [anon_sym_sizeof] = ACTIONS(1096), + [anon_sym_offsetof] = ACTIONS(1096), + [anon_sym__Generic] = ACTIONS(1096), + [sym_number_literal] = ACTIONS(1098), + [anon_sym_L_SQUOTE] = ACTIONS(1098), + [anon_sym_u_SQUOTE] = ACTIONS(1098), + [anon_sym_U_SQUOTE] = ACTIONS(1098), + [anon_sym_u8_SQUOTE] = ACTIONS(1098), + [anon_sym_SQUOTE] = ACTIONS(1098), + [anon_sym_L_DQUOTE] = ACTIONS(1098), + [anon_sym_u_DQUOTE] = ACTIONS(1098), + [anon_sym_U_DQUOTE] = ACTIONS(1098), + [anon_sym_u8_DQUOTE] = ACTIONS(1098), + [anon_sym_DQUOTE] = ACTIONS(1098), + [sym_true] = ACTIONS(1096), + [sym_false] = ACTIONS(1096), + [sym_null] = ACTIONS(1096), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(353), - [sym_compound_statement] = STATE(152), - [sym_attributed_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_case_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [361] = { + [sym_identifier] = ACTIONS(1112), + [aux_sym_preproc_include_token1] = ACTIONS(1112), + [aux_sym_preproc_def_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token1] = ACTIONS(1112), + [aux_sym_preproc_if_token2] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), + [sym_preproc_directive] = ACTIONS(1112), + [anon_sym_LPAREN2] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1112), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym___attribute__] = ACTIONS(1112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1114), + [anon_sym___declspec] = ACTIONS(1112), + [anon_sym___cdecl] = ACTIONS(1112), + [anon_sym___clrcall] = ACTIONS(1112), + [anon_sym___stdcall] = ACTIONS(1112), + [anon_sym___fastcall] = ACTIONS(1112), + [anon_sym___thiscall] = ACTIONS(1112), + [anon_sym___vectorcall] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_auto] = ACTIONS(1112), + [anon_sym_register] = ACTIONS(1112), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_volatile] = ACTIONS(1112), + [anon_sym_restrict] = ACTIONS(1112), + [anon_sym___restrict__] = ACTIONS(1112), + [anon_sym__Atomic] = ACTIONS(1112), + [anon_sym__Noreturn] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(1112), + [anon_sym_unsigned] = ACTIONS(1112), + [anon_sym_long] = ACTIONS(1112), + [anon_sym_short] = ACTIONS(1112), + [sym_primitive_type] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_do] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_goto] = ACTIONS(1112), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [anon_sym_sizeof] = ACTIONS(1112), + [anon_sym_offsetof] = ACTIONS(1112), + [anon_sym__Generic] = ACTIONS(1112), + [sym_number_literal] = ACTIONS(1114), + [anon_sym_L_SQUOTE] = ACTIONS(1114), + [anon_sym_u_SQUOTE] = ACTIONS(1114), + [anon_sym_U_SQUOTE] = ACTIONS(1114), + [anon_sym_u8_SQUOTE] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_L_DQUOTE] = ACTIONS(1114), + [anon_sym_u_DQUOTE] = ACTIONS(1114), + [anon_sym_U_DQUOTE] = ACTIONS(1114), + [anon_sym_u8_DQUOTE] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1076), - [aux_sym_preproc_include_token1] = ACTIONS(1076), - [aux_sym_preproc_def_token1] = ACTIONS(1076), - [aux_sym_preproc_if_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1076), - [sym_preproc_directive] = ACTIONS(1076), - [anon_sym_LPAREN2] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_TILDE] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_typedef] = ACTIONS(1076), - [anon_sym_extern] = ACTIONS(1076), - [anon_sym___attribute__] = ACTIONS(1076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1078), - [anon_sym___declspec] = ACTIONS(1076), - [anon_sym___cdecl] = ACTIONS(1076), - [anon_sym___clrcall] = ACTIONS(1076), - [anon_sym___stdcall] = ACTIONS(1076), - [anon_sym___fastcall] = ACTIONS(1076), - [anon_sym___thiscall] = ACTIONS(1076), - [anon_sym___vectorcall] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_static] = ACTIONS(1076), - [anon_sym_auto] = ACTIONS(1076), - [anon_sym_register] = ACTIONS(1076), - [anon_sym_inline] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(1076), - [anon_sym_volatile] = ACTIONS(1076), - [anon_sym_restrict] = ACTIONS(1076), - [anon_sym___restrict__] = ACTIONS(1076), - [anon_sym__Atomic] = ACTIONS(1076), - [anon_sym__Noreturn] = ACTIONS(1076), - [anon_sym_signed] = ACTIONS(1076), - [anon_sym_unsigned] = ACTIONS(1076), - [anon_sym_long] = ACTIONS(1076), - [anon_sym_short] = ACTIONS(1076), - [sym_primitive_type] = ACTIONS(1076), - [anon_sym_enum] = ACTIONS(1076), - [anon_sym_struct] = ACTIONS(1076), - [anon_sym_union] = ACTIONS(1076), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(1076), - [anon_sym_default] = ACTIONS(1076), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_for] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1076), - [anon_sym_break] = ACTIONS(1076), - [anon_sym_continue] = ACTIONS(1076), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1078), - [anon_sym_PLUS_PLUS] = ACTIONS(1078), - [anon_sym_sizeof] = ACTIONS(1076), - [anon_sym__Generic] = ACTIONS(1076), - [sym_number_literal] = ACTIONS(1078), - [anon_sym_L_SQUOTE] = ACTIONS(1078), - [anon_sym_u_SQUOTE] = ACTIONS(1078), - [anon_sym_U_SQUOTE] = ACTIONS(1078), - [anon_sym_u8_SQUOTE] = ACTIONS(1078), - [anon_sym_SQUOTE] = ACTIONS(1078), - [anon_sym_L_DQUOTE] = ACTIONS(1078), - [anon_sym_u_DQUOTE] = ACTIONS(1078), - [anon_sym_U_DQUOTE] = ACTIONS(1078), - [anon_sym_u8_DQUOTE] = ACTIONS(1078), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), + [362] = { + [sym_identifier] = ACTIONS(1100), + [aux_sym_preproc_include_token1] = ACTIONS(1100), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token2] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1100), + [sym_preproc_directive] = ACTIONS(1100), + [anon_sym_LPAREN2] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_TILDE] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1100), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym___attribute__] = ACTIONS(1100), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym___declspec] = ACTIONS(1100), + [anon_sym___cdecl] = ACTIONS(1100), + [anon_sym___clrcall] = ACTIONS(1100), + [anon_sym___stdcall] = ACTIONS(1100), + [anon_sym___fastcall] = ACTIONS(1100), + [anon_sym___thiscall] = ACTIONS(1100), + [anon_sym___vectorcall] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_auto] = ACTIONS(1100), + [anon_sym_register] = ACTIONS(1100), + [anon_sym_inline] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_volatile] = ACTIONS(1100), + [anon_sym_restrict] = ACTIONS(1100), + [anon_sym___restrict__] = ACTIONS(1100), + [anon_sym__Atomic] = ACTIONS(1100), + [anon_sym__Noreturn] = ACTIONS(1100), + [anon_sym_signed] = ACTIONS(1100), + [anon_sym_unsigned] = ACTIONS(1100), + [anon_sym_long] = ACTIONS(1100), + [anon_sym_short] = ACTIONS(1100), + [sym_primitive_type] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_do] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_goto] = ACTIONS(1100), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_sizeof] = ACTIONS(1100), + [anon_sym_offsetof] = ACTIONS(1100), + [anon_sym__Generic] = ACTIONS(1100), + [sym_number_literal] = ACTIONS(1102), + [anon_sym_L_SQUOTE] = ACTIONS(1102), + [anon_sym_u_SQUOTE] = ACTIONS(1102), + [anon_sym_U_SQUOTE] = ACTIONS(1102), + [anon_sym_u8_SQUOTE] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_L_DQUOTE] = ACTIONS(1102), + [anon_sym_u_DQUOTE] = ACTIONS(1102), + [anon_sym_U_DQUOTE] = ACTIONS(1102), + [anon_sym_u8_DQUOTE] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(1102), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), + [sym_null] = ACTIONS(1100), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [363] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(192), - [sym_attributed_statement] = STATE(192), - [sym_labeled_statement] = STATE(192), - [sym_expression_statement] = STATE(192), - [sym_if_statement] = STATE(192), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(192), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(192), - [sym_for_statement] = STATE(192), - [sym_return_statement] = STATE(192), - [sym_break_statement] = STATE(192), - [sym_continue_statement] = STATE(192), - [sym_goto_statement] = STATE(192), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [364] = { + [sym_identifier] = ACTIONS(1116), + [aux_sym_preproc_include_token1] = ACTIONS(1116), + [aux_sym_preproc_def_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token1] = ACTIONS(1116), + [aux_sym_preproc_if_token2] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1116), + [sym_preproc_directive] = ACTIONS(1116), + [anon_sym_LPAREN2] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym___attribute__] = ACTIONS(1116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1118), + [anon_sym___declspec] = ACTIONS(1116), + [anon_sym___cdecl] = ACTIONS(1116), + [anon_sym___clrcall] = ACTIONS(1116), + [anon_sym___stdcall] = ACTIONS(1116), + [anon_sym___fastcall] = ACTIONS(1116), + [anon_sym___thiscall] = ACTIONS(1116), + [anon_sym___vectorcall] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_auto] = ACTIONS(1116), + [anon_sym_register] = ACTIONS(1116), + [anon_sym_inline] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_volatile] = ACTIONS(1116), + [anon_sym_restrict] = ACTIONS(1116), + [anon_sym___restrict__] = ACTIONS(1116), + [anon_sym__Atomic] = ACTIONS(1116), + [anon_sym__Noreturn] = ACTIONS(1116), + [anon_sym_signed] = ACTIONS(1116), + [anon_sym_unsigned] = ACTIONS(1116), + [anon_sym_long] = ACTIONS(1116), + [anon_sym_short] = ACTIONS(1116), + [sym_primitive_type] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_goto] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1118), + [anon_sym_PLUS_PLUS] = ACTIONS(1118), + [anon_sym_sizeof] = ACTIONS(1116), + [anon_sym_offsetof] = ACTIONS(1116), + [anon_sym__Generic] = ACTIONS(1116), + [sym_number_literal] = ACTIONS(1118), + [anon_sym_L_SQUOTE] = ACTIONS(1118), + [anon_sym_u_SQUOTE] = ACTIONS(1118), + [anon_sym_U_SQUOTE] = ACTIONS(1118), + [anon_sym_u8_SQUOTE] = ACTIONS(1118), + [anon_sym_SQUOTE] = ACTIONS(1118), + [anon_sym_L_DQUOTE] = ACTIONS(1118), + [anon_sym_u_DQUOTE] = ACTIONS(1118), + [anon_sym_U_DQUOTE] = ACTIONS(1118), + [anon_sym_u8_DQUOTE] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1118), + [sym_true] = ACTIONS(1116), + [sym_false] = ACTIONS(1116), + [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1048), - [aux_sym_preproc_include_token1] = ACTIONS(1048), - [aux_sym_preproc_def_token1] = ACTIONS(1048), - [aux_sym_preproc_if_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1048), - [sym_preproc_directive] = ACTIONS(1048), - [anon_sym_LPAREN2] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1048), - [anon_sym___attribute__] = ACTIONS(1048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1050), - [anon_sym___declspec] = ACTIONS(1048), - [anon_sym___cdecl] = ACTIONS(1048), - [anon_sym___clrcall] = ACTIONS(1048), - [anon_sym___stdcall] = ACTIONS(1048), - [anon_sym___fastcall] = ACTIONS(1048), - [anon_sym___thiscall] = ACTIONS(1048), - [anon_sym___vectorcall] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1048), - [anon_sym_auto] = ACTIONS(1048), - [anon_sym_register] = ACTIONS(1048), - [anon_sym_inline] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_volatile] = ACTIONS(1048), - [anon_sym_restrict] = ACTIONS(1048), - [anon_sym___restrict__] = ACTIONS(1048), - [anon_sym__Atomic] = ACTIONS(1048), - [anon_sym__Noreturn] = ACTIONS(1048), - [anon_sym_signed] = ACTIONS(1048), - [anon_sym_unsigned] = ACTIONS(1048), - [anon_sym_long] = ACTIONS(1048), - [anon_sym_short] = ACTIONS(1048), - [sym_primitive_type] = ACTIONS(1048), - [anon_sym_enum] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_union] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_switch] = ACTIONS(1048), - [anon_sym_case] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_goto] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1050), - [anon_sym_sizeof] = ACTIONS(1048), - [anon_sym__Generic] = ACTIONS(1048), - [sym_number_literal] = ACTIONS(1050), - [anon_sym_L_SQUOTE] = ACTIONS(1050), - [anon_sym_u_SQUOTE] = ACTIONS(1050), - [anon_sym_U_SQUOTE] = ACTIONS(1050), - [anon_sym_u8_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_L_DQUOTE] = ACTIONS(1050), - [anon_sym_u_DQUOTE] = ACTIONS(1050), - [anon_sym_U_DQUOTE] = ACTIONS(1050), - [anon_sym_u8_DQUOTE] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_true] = ACTIONS(1048), - [sym_false] = ACTIONS(1048), - [sym_null] = ACTIONS(1048), + [365] = { + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1052), + [aux_sym_preproc_def_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token1] = ACTIONS(1052), + [aux_sym_preproc_if_token2] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1052), + [sym_preproc_directive] = ACTIONS(1052), + [anon_sym_LPAREN2] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_typedef] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym___attribute__] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1054), + [anon_sym___declspec] = ACTIONS(1052), + [anon_sym___cdecl] = ACTIONS(1052), + [anon_sym___clrcall] = ACTIONS(1052), + [anon_sym___stdcall] = ACTIONS(1052), + [anon_sym___fastcall] = ACTIONS(1052), + [anon_sym___thiscall] = ACTIONS(1052), + [anon_sym___vectorcall] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1052), + [anon_sym_auto] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_inline] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_volatile] = ACTIONS(1052), + [anon_sym_restrict] = ACTIONS(1052), + [anon_sym___restrict__] = ACTIONS(1052), + [anon_sym__Atomic] = ACTIONS(1052), + [anon_sym__Noreturn] = ACTIONS(1052), + [anon_sym_signed] = ACTIONS(1052), + [anon_sym_unsigned] = ACTIONS(1052), + [anon_sym_long] = ACTIONS(1052), + [anon_sym_short] = ACTIONS(1052), + [sym_primitive_type] = ACTIONS(1052), + [anon_sym_enum] = ACTIONS(1052), + [anon_sym_struct] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1052), + [anon_sym_case] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_goto] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_sizeof] = ACTIONS(1052), + [anon_sym_offsetof] = ACTIONS(1052), + [anon_sym__Generic] = ACTIONS(1052), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_L_SQUOTE] = ACTIONS(1054), + [anon_sym_u_SQUOTE] = ACTIONS(1054), + [anon_sym_U_SQUOTE] = ACTIONS(1054), + [anon_sym_u8_SQUOTE] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_L_DQUOTE] = ACTIONS(1054), + [anon_sym_u_DQUOTE] = ACTIONS(1054), + [anon_sym_U_DQUOTE] = ACTIONS(1054), + [anon_sym_u8_DQUOTE] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(292), - [sym_compound_statement] = STATE(168), - [sym_attributed_statement] = STATE(168), - [sym_labeled_statement] = STATE(168), - [sym_expression_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_break_statement] = STATE(168), - [sym_continue_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym__expression] = STATE(768), - [sym_comma_expression] = STATE(1449), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1138), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [366] = { + [sym_identifier] = ACTIONS(1064), + [aux_sym_preproc_include_token1] = ACTIONS(1064), + [aux_sym_preproc_def_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token1] = ACTIONS(1064), + [aux_sym_preproc_if_token2] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1064), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_STAR] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_typedef] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym___attribute__] = ACTIONS(1064), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1066), + [anon_sym___declspec] = ACTIONS(1064), + [anon_sym___cdecl] = ACTIONS(1064), + [anon_sym___clrcall] = ACTIONS(1064), + [anon_sym___stdcall] = ACTIONS(1064), + [anon_sym___fastcall] = ACTIONS(1064), + [anon_sym___thiscall] = ACTIONS(1064), + [anon_sym___vectorcall] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1066), + [anon_sym_static] = ACTIONS(1064), + [anon_sym_auto] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_inline] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_volatile] = ACTIONS(1064), + [anon_sym_restrict] = ACTIONS(1064), + [anon_sym___restrict__] = ACTIONS(1064), + [anon_sym__Atomic] = ACTIONS(1064), + [anon_sym__Noreturn] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(1064), + [anon_sym_unsigned] = ACTIONS(1064), + [anon_sym_long] = ACTIONS(1064), + [anon_sym_short] = ACTIONS(1064), + [sym_primitive_type] = ACTIONS(1064), + [anon_sym_enum] = ACTIONS(1064), + [anon_sym_struct] = ACTIONS(1064), + [anon_sym_union] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_switch] = ACTIONS(1064), + [anon_sym_case] = ACTIONS(1064), + [anon_sym_default] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_goto] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_sizeof] = ACTIONS(1064), + [anon_sym_offsetof] = ACTIONS(1064), + [anon_sym__Generic] = ACTIONS(1064), + [sym_number_literal] = ACTIONS(1066), + [anon_sym_L_SQUOTE] = ACTIONS(1066), + [anon_sym_u_SQUOTE] = ACTIONS(1066), + [anon_sym_U_SQUOTE] = ACTIONS(1066), + [anon_sym_u8_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_L_DQUOTE] = ACTIONS(1066), + [anon_sym_u_DQUOTE] = ACTIONS(1066), + [anon_sym_U_DQUOTE] = ACTIONS(1066), + [anon_sym_u8_DQUOTE] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym_true] = ACTIONS(1064), + [sym_false] = ACTIONS(1064), + [sym_null] = ACTIONS(1064), [sym_comment] = ACTIONS(3), }, - [359] = { + [367] = { + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token2] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [368] = { [sym_identifier] = ACTIONS(1072), [aux_sym_preproc_include_token1] = ACTIONS(1072), [aux_sym_preproc_def_token1] = ACTIONS(1072), @@ -44891,6 +46069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1074), [anon_sym_PLUS_PLUS] = ACTIONS(1074), [anon_sym_sizeof] = ACTIONS(1072), + [anon_sym_offsetof] = ACTIONS(1072), [anon_sym__Generic] = ACTIONS(1072), [sym_number_literal] = ACTIONS(1074), [anon_sym_L_SQUOTE] = ACTIONS(1074), @@ -44908,557 +46087,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1072), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(1056), - [aux_sym_preproc_def_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token1] = ACTIONS(1056), - [aux_sym_preproc_if_token2] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1056), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1056), - [sym_preproc_directive] = ACTIONS(1056), - [anon_sym_LPAREN2] = ACTIONS(1058), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_TILDE] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_STAR] = ACTIONS(1058), - [anon_sym_AMP] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym___attribute__] = ACTIONS(1056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym___declspec] = ACTIONS(1056), - [anon_sym___cdecl] = ACTIONS(1056), - [anon_sym___clrcall] = ACTIONS(1056), - [anon_sym___stdcall] = ACTIONS(1056), - [anon_sym___fastcall] = ACTIONS(1056), - [anon_sym___thiscall] = ACTIONS(1056), - [anon_sym___vectorcall] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_static] = ACTIONS(1056), - [anon_sym_auto] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_inline] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_volatile] = ACTIONS(1056), - [anon_sym_restrict] = ACTIONS(1056), - [anon_sym___restrict__] = ACTIONS(1056), - [anon_sym__Atomic] = ACTIONS(1056), - [anon_sym__Noreturn] = ACTIONS(1056), - [anon_sym_signed] = ACTIONS(1056), - [anon_sym_unsigned] = ACTIONS(1056), - [anon_sym_long] = ACTIONS(1056), - [anon_sym_short] = ACTIONS(1056), - [sym_primitive_type] = ACTIONS(1056), - [anon_sym_enum] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1056), - [anon_sym_default] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_goto] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_sizeof] = ACTIONS(1056), - [anon_sym__Generic] = ACTIONS(1056), - [sym_number_literal] = ACTIONS(1058), - [anon_sym_L_SQUOTE] = ACTIONS(1058), - [anon_sym_u_SQUOTE] = ACTIONS(1058), - [anon_sym_U_SQUOTE] = ACTIONS(1058), - [anon_sym_u8_SQUOTE] = ACTIONS(1058), - [anon_sym_SQUOTE] = ACTIONS(1058), - [anon_sym_L_DQUOTE] = ACTIONS(1058), - [anon_sym_u_DQUOTE] = ACTIONS(1058), - [anon_sym_U_DQUOTE] = ACTIONS(1058), - [anon_sym_u8_DQUOTE] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym_true] = ACTIONS(1056), - [sym_false] = ACTIONS(1056), - [sym_null] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_identifier] = ACTIONS(1044), - [aux_sym_preproc_include_token1] = ACTIONS(1044), - [aux_sym_preproc_def_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token1] = ACTIONS(1044), - [aux_sym_preproc_if_token2] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1044), - [sym_preproc_directive] = ACTIONS(1044), - [anon_sym_LPAREN2] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_typedef] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(1044), - [anon_sym___attribute__] = ACTIONS(1044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1046), - [anon_sym___declspec] = ACTIONS(1044), - [anon_sym___cdecl] = ACTIONS(1044), - [anon_sym___clrcall] = ACTIONS(1044), - [anon_sym___stdcall] = ACTIONS(1044), - [anon_sym___fastcall] = ACTIONS(1044), - [anon_sym___thiscall] = ACTIONS(1044), - [anon_sym___vectorcall] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_auto] = ACTIONS(1044), - [anon_sym_register] = ACTIONS(1044), - [anon_sym_inline] = ACTIONS(1044), - [anon_sym_const] = ACTIONS(1044), - [anon_sym_volatile] = ACTIONS(1044), - [anon_sym_restrict] = ACTIONS(1044), - [anon_sym___restrict__] = ACTIONS(1044), - [anon_sym__Atomic] = ACTIONS(1044), - [anon_sym__Noreturn] = ACTIONS(1044), - [anon_sym_signed] = ACTIONS(1044), - [anon_sym_unsigned] = ACTIONS(1044), - [anon_sym_long] = ACTIONS(1044), - [anon_sym_short] = ACTIONS(1044), - [sym_primitive_type] = ACTIONS(1044), - [anon_sym_enum] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_switch] = ACTIONS(1044), - [anon_sym_case] = ACTIONS(1044), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_do] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_goto] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1046), - [anon_sym_sizeof] = ACTIONS(1044), - [anon_sym__Generic] = ACTIONS(1044), - [sym_number_literal] = ACTIONS(1046), - [anon_sym_L_SQUOTE] = ACTIONS(1046), - [anon_sym_u_SQUOTE] = ACTIONS(1046), - [anon_sym_U_SQUOTE] = ACTIONS(1046), - [anon_sym_u8_SQUOTE] = ACTIONS(1046), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_L_DQUOTE] = ACTIONS(1046), - [anon_sym_u_DQUOTE] = ACTIONS(1046), - [anon_sym_U_DQUOTE] = ACTIONS(1046), - [anon_sym_u8_DQUOTE] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_true] = ACTIONS(1044), - [sym_false] = ACTIONS(1044), - [sym_null] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [sym_attribute_declaration] = STATE(362), - [sym_compound_statement] = STATE(139), - [sym_attributed_statement] = STATE(139), - [sym_labeled_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [sym_if_statement] = STATE(139), - [sym_switch_statement] = STATE(139), - [sym_case_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1151), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1220), - [anon_sym_u_DQUOTE] = ACTIONS(1220), - [anon_sym_U_DQUOTE] = ACTIONS(1220), - [anon_sym_u8_DQUOTE] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(164), - [sym_attributed_statement] = STATE(164), - [sym_labeled_statement] = STATE(164), - [sym_expression_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_switch_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_do_statement] = STATE(164), - [sym_for_statement] = STATE(164), - [sym_return_statement] = STATE(164), - [sym_break_statement] = STATE(164), - [sym_continue_statement] = STATE(164), - [sym_goto_statement] = STATE(164), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(162), - [sym_attributed_statement] = STATE(162), - [sym_labeled_statement] = STATE(162), - [sym_expression_statement] = STATE(162), - [sym_if_statement] = STATE(162), - [sym_switch_statement] = STATE(162), - [sym_case_statement] = STATE(162), - [sym_while_statement] = STATE(162), - [sym_do_statement] = STATE(162), - [sym_for_statement] = STATE(162), - [sym_return_statement] = STATE(162), - [sym_break_statement] = STATE(162), - [sym_continue_statement] = STATE(162), - [sym_goto_statement] = STATE(162), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym___restrict__] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym__Noreturn] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [anon_sym__Generic] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [369] = { + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token2] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token2] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym___restrict__] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym__Noreturn] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [anon_sym__Generic] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1080), + [aux_sym_preproc_include_token1] = ACTIONS(1080), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1080), + [sym_preproc_directive] = ACTIONS(1080), + [anon_sym_LPAREN2] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_typedef] = ACTIONS(1080), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym___attribute__] = ACTIONS(1080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1082), + [anon_sym___declspec] = ACTIONS(1080), + [anon_sym___cdecl] = ACTIONS(1080), + [anon_sym___clrcall] = ACTIONS(1080), + [anon_sym___stdcall] = ACTIONS(1080), + [anon_sym___fastcall] = ACTIONS(1080), + [anon_sym___thiscall] = ACTIONS(1080), + [anon_sym___vectorcall] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_auto] = ACTIONS(1080), + [anon_sym_register] = ACTIONS(1080), + [anon_sym_inline] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_volatile] = ACTIONS(1080), + [anon_sym_restrict] = ACTIONS(1080), + [anon_sym___restrict__] = ACTIONS(1080), + [anon_sym__Atomic] = ACTIONS(1080), + [anon_sym__Noreturn] = ACTIONS(1080), + [anon_sym_signed] = ACTIONS(1080), + [anon_sym_unsigned] = ACTIONS(1080), + [anon_sym_long] = ACTIONS(1080), + [anon_sym_short] = ACTIONS(1080), + [sym_primitive_type] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_switch] = ACTIONS(1080), + [anon_sym_case] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_DASH_DASH] = ACTIONS(1082), + [anon_sym_PLUS_PLUS] = ACTIONS(1082), + [anon_sym_sizeof] = ACTIONS(1080), + [anon_sym_offsetof] = ACTIONS(1080), + [anon_sym__Generic] = ACTIONS(1080), + [sym_number_literal] = ACTIONS(1082), + [anon_sym_L_SQUOTE] = ACTIONS(1082), + [anon_sym_u_SQUOTE] = ACTIONS(1082), + [anon_sym_U_SQUOTE] = ACTIONS(1082), + [anon_sym_u8_SQUOTE] = ACTIONS(1082), + [anon_sym_SQUOTE] = ACTIONS(1082), + [anon_sym_L_DQUOTE] = ACTIONS(1082), + [anon_sym_u_DQUOTE] = ACTIONS(1082), + [anon_sym_U_DQUOTE] = ACTIONS(1082), + [anon_sym_u8_DQUOTE] = ACTIONS(1082), + [anon_sym_DQUOTE] = ACTIONS(1082), + [sym_true] = ACTIONS(1080), + [sym_false] = ACTIONS(1080), + [sym_null] = ACTIONS(1080), [sym_comment] = ACTIONS(3), }, - [367] = { + [371] = { + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1092), + [aux_sym_preproc_include_token1] = ACTIONS(1092), + [aux_sym_preproc_def_token1] = ACTIONS(1092), + [aux_sym_preproc_if_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1092), + [anon_sym_LPAREN2] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1092), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym___attribute__] = ACTIONS(1092), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1094), + [anon_sym___declspec] = ACTIONS(1092), + [anon_sym___cdecl] = ACTIONS(1092), + [anon_sym___clrcall] = ACTIONS(1092), + [anon_sym___stdcall] = ACTIONS(1092), + [anon_sym___fastcall] = ACTIONS(1092), + [anon_sym___thiscall] = ACTIONS(1092), + [anon_sym___vectorcall] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_auto] = ACTIONS(1092), + [anon_sym_register] = ACTIONS(1092), + [anon_sym_inline] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_volatile] = ACTIONS(1092), + [anon_sym_restrict] = ACTIONS(1092), + [anon_sym___restrict__] = ACTIONS(1092), + [anon_sym__Atomic] = ACTIONS(1092), + [anon_sym__Noreturn] = ACTIONS(1092), + [anon_sym_signed] = ACTIONS(1092), + [anon_sym_unsigned] = ACTIONS(1092), + [anon_sym_long] = ACTIONS(1092), + [anon_sym_short] = ACTIONS(1092), + [sym_primitive_type] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_goto] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1094), + [anon_sym_sizeof] = ACTIONS(1092), + [anon_sym_offsetof] = ACTIONS(1092), + [anon_sym__Generic] = ACTIONS(1092), + [sym_number_literal] = ACTIONS(1094), + [anon_sym_L_SQUOTE] = ACTIONS(1094), + [anon_sym_u_SQUOTE] = ACTIONS(1094), + [anon_sym_U_SQUOTE] = ACTIONS(1094), + [anon_sym_u8_SQUOTE] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1094), + [anon_sym_L_DQUOTE] = ACTIONS(1094), + [anon_sym_u_DQUOTE] = ACTIONS(1094), + [anon_sym_U_DQUOTE] = ACTIONS(1094), + [anon_sym_u8_DQUOTE] = ACTIONS(1094), + [anon_sym_DQUOTE] = ACTIONS(1094), + [sym_true] = ACTIONS(1092), + [sym_false] = ACTIONS(1092), + [sym_null] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + }, + [372] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), [aux_sym_preproc_if_token1] = ACTIONS(1084), + [aux_sym_preproc_if_token2] = ACTIONS(1084), [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), [sym_preproc_directive] = ACTIONS(1084), @@ -45482,7 +46353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1084), [anon_sym___vectorcall] = ACTIONS(1084), [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), [anon_sym_static] = ACTIONS(1084), [anon_sym_auto] = ACTIONS(1084), [anon_sym_register] = ACTIONS(1084), @@ -45515,6 +46385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1086), [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), + [anon_sym_offsetof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), @@ -45532,427 +46403,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(161), - [sym_attributed_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [369] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(160), - [sym_attributed_statement] = STATE(160), - [sym_labeled_statement] = STATE(160), - [sym_expression_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_switch_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_do_statement] = STATE(160), - [sym_for_statement] = STATE(160), - [sym_return_statement] = STATE(160), - [sym_break_statement] = STATE(160), - [sym_continue_statement] = STATE(160), - [sym_goto_statement] = STATE(160), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [370] = { - [sym_attribute_declaration] = STATE(261), - [sym_compound_statement] = STATE(170), - [sym_attributed_statement] = STATE(170), - [sym_labeled_statement] = STATE(170), - [sym_expression_statement] = STATE(170), - [sym_if_statement] = STATE(170), - [sym_switch_statement] = STATE(170), - [sym_case_statement] = STATE(170), - [sym_while_statement] = STATE(170), - [sym_do_statement] = STATE(170), - [sym_for_statement] = STATE(170), - [sym_return_statement] = STATE(170), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(170), - [sym_goto_statement] = STATE(170), - [sym__expression] = STATE(799), - [sym_comma_expression] = STATE(1321), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1146), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_case] = ACTIONS(378), - [anon_sym_default] = ACTIONS(380), - [anon_sym_while] = ACTIONS(382), - [anon_sym_do] = ACTIONS(384), - [anon_sym_for] = ACTIONS(386), - [anon_sym_return] = ACTIONS(388), - [anon_sym_break] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(392), - [anon_sym_goto] = ACTIONS(394), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1070), - [sym_identifier] = ACTIONS(1068), - [aux_sym_preproc_include_token1] = ACTIONS(1068), - [aux_sym_preproc_def_token1] = ACTIONS(1068), - [aux_sym_preproc_if_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), - [sym_preproc_directive] = ACTIONS(1068), - [anon_sym_LPAREN2] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1070), - [anon_sym_typedef] = ACTIONS(1068), - [anon_sym_extern] = ACTIONS(1068), - [anon_sym___attribute__] = ACTIONS(1068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1070), - [anon_sym___declspec] = ACTIONS(1068), - [anon_sym___cdecl] = ACTIONS(1068), - [anon_sym___clrcall] = ACTIONS(1068), - [anon_sym___stdcall] = ACTIONS(1068), - [anon_sym___fastcall] = ACTIONS(1068), - [anon_sym___thiscall] = ACTIONS(1068), - [anon_sym___vectorcall] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_auto] = ACTIONS(1068), - [anon_sym_register] = ACTIONS(1068), - [anon_sym_inline] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(1068), - [anon_sym_volatile] = ACTIONS(1068), - [anon_sym_restrict] = ACTIONS(1068), - [anon_sym___restrict__] = ACTIONS(1068), - [anon_sym__Atomic] = ACTIONS(1068), - [anon_sym__Noreturn] = ACTIONS(1068), - [anon_sym_signed] = ACTIONS(1068), - [anon_sym_unsigned] = ACTIONS(1068), - [anon_sym_long] = ACTIONS(1068), - [anon_sym_short] = ACTIONS(1068), - [sym_primitive_type] = ACTIONS(1068), - [anon_sym_enum] = ACTIONS(1068), - [anon_sym_struct] = ACTIONS(1068), - [anon_sym_union] = ACTIONS(1068), - [anon_sym_if] = ACTIONS(1068), - [anon_sym_switch] = ACTIONS(1068), - [anon_sym_case] = ACTIONS(1068), - [anon_sym_default] = ACTIONS(1068), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1068), - [anon_sym_break] = ACTIONS(1068), - [anon_sym_continue] = ACTIONS(1068), - [anon_sym_goto] = ACTIONS(1068), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_sizeof] = ACTIONS(1068), - [anon_sym__Generic] = ACTIONS(1068), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_L_SQUOTE] = ACTIONS(1070), - [anon_sym_u_SQUOTE] = ACTIONS(1070), - [anon_sym_U_SQUOTE] = ACTIONS(1070), - [anon_sym_u8_SQUOTE] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1070), - [anon_sym_L_DQUOTE] = ACTIONS(1070), - [anon_sym_u_DQUOTE] = ACTIONS(1070), - [anon_sym_U_DQUOTE] = ACTIONS(1070), - [anon_sym_u8_DQUOTE] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - }, - [372] = { - [sym_attribute_declaration] = STATE(256), - [sym_compound_statement] = STATE(133), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym__expression] = STATE(773), - [sym_comma_expression] = STATE(1433), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(324), - [anon_sym_if] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(330), - [anon_sym_case] = ACTIONS(332), - [anon_sym_default] = ACTIONS(334), - [anon_sym_while] = ACTIONS(336), - [anon_sym_do] = ACTIONS(338), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(342), - [anon_sym_break] = ACTIONS(344), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_goto] = ACTIONS(348), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, [373] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1417), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1482), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45966,10 +46448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -45977,54 +46459,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [374] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1367), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1393), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46038,10 +46522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46049,54 +46533,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [375] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1414), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1368), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46110,10 +46596,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46121,54 +46607,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1455), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1389), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46182,10 +46670,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46193,126 +46681,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [377] = { - [sym__expression] = STATE(605), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_initializer_list] = STATE(617), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_identifier] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RPAREN] = ACTIONS(880), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_DASH_GT] = ACTIONS(880), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), - [sym_comment] = ACTIONS(3), - }, - [378] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1429), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1461), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46326,10 +46744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46337,54 +46755,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1339), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [378] = { + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1440), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46398,10 +46818,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46409,54 +46829,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [sym__expression] = STATE(590), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_initializer_list] = STATE(589), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_identifier] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(888), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(888), + [anon_sym_GT_GT] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DASH_GT] = ACTIONS(888), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [380] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1368), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1373), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46470,10 +46966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46481,54 +46977,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [381] = { - [sym_type_qualifier] = STATE(878), - [sym__type_specifier] = STATE(1001), - [sym_sized_type_specifier] = STATE(897), - [sym_enum_specifier] = STATE(897), - [sym_struct_specifier] = STATE(897), - [sym_union_specifier] = STATE(897), - [sym__expression] = STATE(780), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(621), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_type_descriptor] = STATE(1356), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(621), - [sym_call_expression] = STATE(621), - [sym_field_expression] = STATE(621), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(621), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_macro_type_specifier] = STATE(897), - [aux_sym_type_definition_repeat1] = STATE(878), - [aux_sym_sized_type_specifier_repeat1] = STATE(1012), - [sym_identifier] = ACTIONS(1352), + [sym_type_qualifier] = STATE(875), + [sym__type_specifier] = STATE(965), + [sym_sized_type_specifier] = STATE(886), + [sym_enum_specifier] = STATE(886), + [sym_struct_specifier] = STATE(886), + [sym_union_specifier] = STATE(886), + [sym__expression] = STATE(795), + [sym_comma_expression] = STATE(1457), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(624), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_type_descriptor] = STATE(1456), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(624), + [sym_call_expression] = STATE(624), + [sym_field_expression] = STATE(624), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(624), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_macro_type_specifier] = STATE(886), + [aux_sym_type_definition_repeat1] = STATE(875), + [aux_sym_sized_type_specifier_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46542,10 +47040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(45), [anon_sym__Atomic] = ACTIONS(45), [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(49), [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), @@ -46553,227 +47051,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, [382] = { - [sym_identifier] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [sym_null] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym___restrict__] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym__Noreturn] = ACTIONS(1369), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_goto] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_sizeof] = ACTIONS(1369), + [anon_sym_offsetof] = ACTIONS(1369), + [anon_sym__Generic] = ACTIONS(1369), + [sym_number_literal] = ACTIONS(1371), + [anon_sym_L_SQUOTE] = ACTIONS(1371), + [anon_sym_u_SQUOTE] = ACTIONS(1371), + [anon_sym_U_SQUOTE] = ACTIONS(1371), + [anon_sym_u8_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_L_DQUOTE] = ACTIONS(1371), + [anon_sym_u_DQUOTE] = ACTIONS(1371), + [anon_sym_U_DQUOTE] = ACTIONS(1371), + [anon_sym_u8_DQUOTE] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_true] = ACTIONS(1369), + [sym_false] = ACTIONS(1369), + [sym_null] = ACTIONS(1369), [sym_comment] = ACTIONS(3), }, [383] = { - [sym_identifier] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_COLON] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_null] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym___attribute__] = ACTIONS(1373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_auto] = ACTIONS(1373), + [anon_sym_register] = ACTIONS(1373), + [anon_sym_inline] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_volatile] = ACTIONS(1373), + [anon_sym_restrict] = ACTIONS(1373), + [anon_sym___restrict__] = ACTIONS(1373), + [anon_sym__Atomic] = ACTIONS(1373), + [anon_sym__Noreturn] = ACTIONS(1373), + [anon_sym_signed] = ACTIONS(1373), + [anon_sym_unsigned] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [sym_primitive_type] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_goto] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_sizeof] = ACTIONS(1373), + [anon_sym_offsetof] = ACTIONS(1373), + [anon_sym__Generic] = ACTIONS(1373), + [sym_number_literal] = ACTIONS(1375), + [anon_sym_L_SQUOTE] = ACTIONS(1375), + [anon_sym_u_SQUOTE] = ACTIONS(1375), + [anon_sym_U_SQUOTE] = ACTIONS(1375), + [anon_sym_u8_SQUOTE] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_L_DQUOTE] = ACTIONS(1375), + [anon_sym_u_DQUOTE] = ACTIONS(1375), + [anon_sym_U_DQUOTE] = ACTIONS(1375), + [anon_sym_u8_DQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [sym_true] = ACTIONS(1373), + [sym_false] = ACTIONS(1373), + [sym_null] = ACTIONS(1373), [sym_comment] = ACTIONS(3), }, [384] = { - [sym__expression] = STATE(649), - [sym_conditional_expression] = STATE(618), - [sym_assignment_expression] = STATE(618), - [sym_pointer_expression] = STATE(654), - [sym_unary_expression] = STATE(618), - [sym_binary_expression] = STATE(618), - [sym_update_expression] = STATE(618), - [sym_cast_expression] = STATE(618), - [sym_sizeof_expression] = STATE(618), - [sym_generic_expression] = STATE(618), - [sym_subscript_expression] = STATE(654), - [sym_call_expression] = STATE(654), - [sym_field_expression] = STATE(654), - [sym_compound_literal_expression] = STATE(618), - [sym_parenthesized_expression] = STATE(654), - [sym_initializer_list] = STATE(617), - [sym_char_literal] = STATE(618), - [sym_concatenated_string] = STATE(618), - [sym_string_literal] = STATE(435), - [sym_identifier] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(1130), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_DASH_GT] = ACTIONS(880), - [sym_number_literal] = ACTIONS(85), - [anon_sym_L_SQUOTE] = ACTIONS(87), - [anon_sym_u_SQUOTE] = ACTIONS(87), - [anon_sym_U_SQUOTE] = ACTIONS(87), - [anon_sym_u8_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_L_DQUOTE] = ACTIONS(89), - [anon_sym_u_DQUOTE] = ACTIONS(89), - [anon_sym_U_DQUOTE] = ACTIONS(89), - [anon_sym_u8_DQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_true] = ACTIONS(91), - [sym_false] = ACTIONS(91), - [sym_null] = ACTIONS(91), + [sym__expression] = STATE(636), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(653), + [sym_unary_expression] = STATE(595), + [sym_binary_expression] = STATE(595), + [sym_update_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_offsetof_expression] = STATE(595), + [sym_generic_expression] = STATE(595), + [sym_subscript_expression] = STATE(653), + [sym_call_expression] = STATE(653), + [sym_field_expression] = STATE(653), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(653), + [sym_initializer_list] = STATE(589), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(432), + [sym_identifier] = ACTIONS(1377), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_PERCENT] = ACTIONS(888), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_LT_LT] = ACTIONS(888), + [anon_sym_GT_GT] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym_offsetof] = ACTIONS(83), + [anon_sym__Generic] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_DASH_GT] = ACTIONS(888), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), }, }; @@ -46782,11 +47285,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(1391), 1, sym_identifier, - ACTIONS(1389), 1, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1385), 18, + ACTIONS(1396), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -46801,11 +47304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, - ACTIONS(1383), 20, + ACTIONS(1394), 20, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -46826,7 +47330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1387), 21, + ACTIONS(1398), 21, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -46848,7 +47352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [75] = 30, + [76] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -46863,37 +47367,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1392), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(1394), 1, + ACTIONS(1405), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1407), 1, anon_sym_RPAREN, - ACTIONS(1398), 1, + ACTIONS(1409), 1, anon_sym_LPAREN2, - ACTIONS(1400), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1404), 1, + ACTIONS(1415), 1, anon_sym_LBRACK, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, + STATE(938), 1, sym__declaration_specifiers, - STATE(1111), 1, + STATE(1110), 1, sym__declarator, - STATE(1127), 1, + STATE(1148), 1, sym_parameter_list, - STATE(1151), 1, + STATE(1159), 1, sym__abstract_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1201), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -46901,7 +47405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1131), 4, + STATE(1133), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -46912,13 +47416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -46931,7 +47435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -46939,7 +47443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [196] = 26, + [197] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -46954,32 +47458,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1412), 1, + ACTIONS(1423), 1, aux_sym_preproc_if_token2, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1476), 2, + STATE(1447), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -46993,7 +47497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47006,7 +47510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47014,7 +47518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(392), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47023,7 +47527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [306] = 26, + [307] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47038,32 +47542,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1422), 1, + ACTIONS(1433), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1442), 2, + STATE(1432), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47077,7 +47581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47090,7 +47594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47098,7 +47602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(398), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47107,7 +47611,90 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [416] = 26, + [417] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1435), 1, + anon_sym_COMMA, + ACTIONS(1437), 1, + anon_sym_RBRACE, + ACTIONS(1439), 1, + anon_sym_LBRACK, + ACTIONS(1441), 1, + anon_sym_DOT, + STATE(432), 1, + sym_string_literal, + STATE(733), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(1193), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + STATE(1120), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(624), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [525] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47122,32 +47709,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1424), 1, + ACTIONS(1443), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1391), 2, + STATE(1480), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47161,7 +47748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47174,7 +47761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47182,7 +47769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(387), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47191,7 +47778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [526] = 26, + [635] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47206,32 +47793,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1426), 1, + ACTIONS(1445), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1465), 2, + STATE(1360), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47245,7 +47832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47258,7 +47845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47266,7 +47853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(396), 8, + STATE(397), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47275,7 +47862,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [636] = 26, + [745] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47290,32 +47877,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1428), 1, + ACTIONS(1447), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1343), 2, + STATE(1361), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47329,7 +47916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47342,7 +47929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47350,7 +47937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(399), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47359,7 +47946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [746] = 26, + [855] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47374,32 +47961,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1430), 1, + ACTIONS(1449), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1441), 2, + STATE(1406), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47413,7 +48000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47426,7 +48013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47434,7 +48021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47443,7 +48030,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [856] = 26, + [965] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47458,32 +48045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1432), 1, + ACTIONS(1451), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1341), 2, + STATE(1317), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47497,7 +48084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47510,7 +48097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47518,7 +48105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(392), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47527,7 +48114,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [966] = 26, + [1075] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47542,32 +48129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1434), 1, + ACTIONS(1453), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1399), 2, + STATE(1454), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47581,7 +48168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47594,7 +48181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47602,7 +48189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(389), 8, + STATE(388), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47611,7 +48198,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1076] = 26, + [1185] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47626,32 +48213,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1436), 1, + ACTIONS(1455), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1382), 2, + STATE(1403), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47665,7 +48252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47678,7 +48265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47686,7 +48273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(393), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47695,7 +48282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1186] = 26, + [1295] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47710,32 +48297,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1438), 1, + ACTIONS(1457), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1474), 2, + STATE(1387), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47749,7 +48336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47762,7 +48349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47770,7 +48357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47779,7 +48366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1296] = 26, + [1405] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47794,32 +48381,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1440), 1, + ACTIONS(1459), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1392), 2, + STATE(1356), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47833,7 +48420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47846,7 +48433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47854,7 +48441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(395), 8, + STATE(401), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47863,7 +48450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1406] = 26, + [1515] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47878,32 +48465,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1442), 1, + ACTIONS(1461), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1466), 2, + STATE(1304), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47917,7 +48504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47930,7 +48517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47938,7 +48525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47947,7 +48534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1516] = 26, + [1625] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47962,32 +48549,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1444), 1, + ACTIONS(1463), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1332), 2, + STATE(1306), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48001,7 +48588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48014,7 +48601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -48022,7 +48609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, + STATE(399), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -48031,7 +48618,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1626] = 26, + [1735] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -48046,562 +48633,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1419), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1421), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1427), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1429), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1431), 1, sym_preproc_directive, - ACTIONS(1446), 1, + ACTIONS(1465), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1019), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1425), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1348), 2, + STATE(1329), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(393), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1736] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1465), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1450), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [1813] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1469), 1, - anon_sym_SEMI, - ACTIONS(1472), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1450), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [1892] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1474), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1450), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [1969] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1465), 1, - anon_sym_COLON, - ACTIONS(1469), 1, - anon_sym_SEMI, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1450), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [2048] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1469), 1, - anon_sym_SEMI, - ACTIONS(1476), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1450), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [2127] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1476), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1450), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [2204] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1452), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1469), 1, - anon_sym_SEMI, - ACTIONS(1474), 1, - anon_sym_COLON, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1450), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1448), 15, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [2283] = 10, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(424), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1845] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(1471), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1477), 1, anon_sym_STAR, - ACTIONS(1461), 1, + ACTIONS(1480), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, + ACTIONS(1482), 1, anon_sym_EQ, - ACTIONS(1472), 1, + ACTIONS(1484), 1, anon_sym_COLON, - ACTIONS(1467), 10, + ACTIONS(1486), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -48612,7 +48726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -48625,7 +48739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1450), 13, + ACTIONS(1469), 13, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -48639,7 +48753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1448), 15, + ACTIONS(1467), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -48655,72 +48769,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [2360] = 9, + [1922] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1377), 1, + sym_identifier, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1385), 1, + anon_sym_AMP, + ACTIONS(1389), 1, + anon_sym_sizeof, + ACTIONS(1488), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1490), 1, + anon_sym_RBRACK, + STATE(432), 1, + sym_string_literal, + STATE(846), 1, + sym__expression, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1450), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + STATE(408), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(653), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [2434] = 24, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [2023] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -48728,24 +48856,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, + ACTIONS(900), 1, anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1478), 1, - anon_sym_COMMA, - ACTIONS(1480), 1, - anon_sym_RBRACE, - ACTIONS(1482), 1, + ACTIONS(1439), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1441), 1, anon_sym_DOT, - STATE(435), 1, + ACTIONS(1494), 1, + anon_sym_RBRACE, + STATE(432), 1, sym_string_literal, - STATE(749), 1, + STATE(803), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -48759,36 +48887,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1167), 2, + STATE(1265), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1118), 3, + STATE(1120), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48796,154 +48924,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2538] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1486), 1, - sym_identifier, - ACTIONS(1489), 1, - aux_sym_preproc_def_token1, - ACTIONS(1492), 1, - aux_sym_preproc_if_token1, - ACTIONS(1500), 1, - sym_preproc_directive, - ACTIONS(1506), 1, - anon_sym___attribute__, - ACTIONS(1509), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1512), 1, - anon_sym___declspec, - ACTIONS(1521), 1, - sym_primitive_type, - ACTIONS(1524), 1, - anon_sym_enum, - ACTIONS(1527), 1, - anon_sym_struct, - ACTIONS(1530), 1, - anon_sym_union, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1497), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1495), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1518), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1503), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1515), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(411), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2640] = 21, + [2128] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1533), 1, + ACTIONS(1496), 1, anon_sym_STAR, - ACTIONS(1535), 1, + ACTIONS(1498), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(850), 1, + STATE(821), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(414), 2, + STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48951,75 +49003,145 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2737] = 21, + [2229] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1500), 1, + anon_sym_COLON, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1469), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [2306] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1539), 1, + ACTIONS(1502), 1, anon_sym_STAR, - ACTIONS(1541), 1, + ACTIONS(1504), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(841), 1, + STATE(829), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(417), 2, + STATE(405), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49027,75 +49149,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2834] = 21, + [2407] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1543), 1, + ACTIONS(1506), 1, anon_sym_STAR, - ACTIONS(1545), 1, + ACTIONS(1508), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(820), 1, + STATE(828), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49103,75 +49228,214 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2931] = 21, + [2508] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1484), 1, + anon_sym_COLON, + ACTIONS(1510), 1, + anon_sym_SEMI, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [2587] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1510), 1, + anon_sym_SEMI, + ACTIONS(1513), 1, + anon_sym_COLON, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [2666] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1547), 1, + ACTIONS(1515), 1, anon_sym_STAR, - ACTIONS(1549), 1, + ACTIONS(1517), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(851), 1, + STATE(858), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49179,75 +49443,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3028] = 21, + [2767] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1551), 1, + ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1553), 1, + ACTIONS(1521), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(846), 1, + STATE(857), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(423), 2, + STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49255,75 +49522,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3125] = 21, + [2868] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1557), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(826), 1, + STATE(854), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, + STATE(412), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49331,153 +49601,145 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3222] = 23, + [2969] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1471), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_DOT, - ACTIONS(1559), 1, - anon_sym_RBRACE, - STATE(435), 1, - sym_string_literal, - STATE(769), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1477), 1, anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(1233), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - STATE(1118), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(621), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3323] = 21, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1527), 1, + anon_sym_COLON, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1469), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3046] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1561), 1, + ACTIONS(1529), 1, anon_sym_STAR, - ACTIONS(1563), 1, + ACTIONS(1531), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, STATE(823), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(415), 2, + STATE(411), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49485,11 +49747,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3420] = 23, + [3147] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49497,22 +49760,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, + ACTIONS(900), 1, anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1482), 1, + ACTIONS(1439), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1441), 1, anon_sym_DOT, - ACTIONS(1565), 1, + ACTIONS(1533), 1, anon_sym_RBRACE, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(769), 1, + STATE(803), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49526,36 +49791,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1233), 2, + STATE(1265), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1118), 3, + STATE(1120), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49563,151 +49828,214 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3521] = 21, + [3252] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1366), 1, - sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1471), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, - anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1567), 1, + ACTIONS(1477), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(824), 1, - sym__expression, - ACTIONS(1370), 2, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1500), 1, + anon_sym_COLON, + ACTIONS(1510), 1, + anon_sym_SEMI, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1376), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3331] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1510), 1, + anon_sym_SEMI, + ACTIONS(1527), 1, + anon_sym_COLON, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(654), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1537), 6, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [3618] = 21, + sym_identifier, + [3410] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1571), 1, + ACTIONS(1535), 1, anon_sym_STAR, - ACTIONS(1573), 1, + ACTIONS(1537), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(855), 1, + STATE(838), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(421), 2, + STATE(420), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49715,75 +50043,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3715] = 21, + [3511] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1385), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - ACTIONS(1575), 1, + ACTIONS(1539), 1, anon_sym_STAR, - ACTIONS(1577), 1, + ACTIONS(1541), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(816), 1, + STATE(822), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1492), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49791,11 +50122,144 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3812] = 22, + [3612] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1513), 1, + anon_sym_COLON, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1469), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3689] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1469), 13, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1467), 15, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [3763] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49803,20 +50267,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, + ACTIONS(900), 1, anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1482), 1, + ACTIONS(1439), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1441), 1, anon_sym_DOT, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(769), 1, + STATE(803), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49830,36 +50296,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1233), 2, + STATE(1265), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1118), 3, + STATE(1120), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49867,11 +50333,168 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3910] = 23, + [3865] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1546), 1, + aux_sym_preproc_def_token1, + ACTIONS(1549), 1, + aux_sym_preproc_if_token1, + ACTIONS(1557), 1, + sym_preproc_directive, + ACTIONS(1563), 1, + anon_sym___attribute__, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, + anon_sym___declspec, + ACTIONS(1578), 1, + sym_primitive_type, + ACTIONS(1581), 1, + anon_sym_enum, + ACTIONS(1584), 1, + anon_sym_struct, + ACTIONS(1587), 1, + anon_sym_union, + STATE(702), 1, + sym__type_specifier, + STATE(749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1019), 1, + sym__declaration_specifiers, + ACTIONS(1554), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1552), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1560), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1572), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(424), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [3967] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1552), 1, + aux_sym_preproc_if_token2, + ACTIONS(1563), 1, + anon_sym___attribute__, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, + anon_sym___declspec, + ACTIONS(1578), 1, + sym_primitive_type, + ACTIONS(1581), 1, + anon_sym_enum, + ACTIONS(1584), 1, + anon_sym_struct, + ACTIONS(1587), 1, + anon_sym_union, + ACTIONS(1590), 1, + aux_sym_preproc_def_token1, + ACTIONS(1593), 1, + aux_sym_preproc_if_token1, + ACTIONS(1599), 1, + sym_preproc_directive, + STATE(702), 1, + sym__type_specifier, + STATE(749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1017), 1, + sym__declaration_specifiers, + ACTIONS(1596), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1560), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1572), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(425), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [4067] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -49886,25 +50509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1579), 1, + ACTIONS(1602), 1, aux_sym_preproc_def_token1, - ACTIONS(1581), 1, + ACTIONS(1604), 1, aux_sym_preproc_if_token1, - ACTIONS(1583), 1, - aux_sym_preproc_if_token2, - ACTIONS(1587), 1, + ACTIONS(1608), 1, sym_preproc_directive, - STATE(700), 1, + ACTIONS(1610), 1, + anon_sym_RBRACE, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1018), 1, sym__declaration_specifiers, - ACTIONS(1585), 2, + ACTIONS(1606), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -49918,7 +50541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -49931,7 +50554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -49939,7 +50562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(426), 8, + STATE(428), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -49948,7 +50571,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4010] = 23, + [4167] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -49963,25 +50586,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1579), 1, + ACTIONS(1612), 1, aux_sym_preproc_def_token1, - ACTIONS(1581), 1, + ACTIONS(1614), 1, aux_sym_preproc_if_token1, - ACTIONS(1587), 1, - sym_preproc_directive, - ACTIONS(1589), 1, + ACTIONS(1616), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + ACTIONS(1620), 1, + sym_preproc_directive, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, STATE(1017), 1, sym__declaration_specifiers, - ACTIONS(1585), 2, + ACTIONS(1618), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -49995,7 +50618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50008,7 +50631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50016,7 +50639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(427), 8, + STATE(429), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50025,144 +50648,67 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4110] = 23, + [4267] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, - sym_identifier, - ACTIONS(1495), 1, - aux_sym_preproc_if_token2, - ACTIONS(1506), 1, - anon_sym___attribute__, - ACTIONS(1509), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1512), 1, - anon_sym___declspec, - ACTIONS(1521), 1, - sym_primitive_type, - ACTIONS(1524), 1, - anon_sym_enum, - ACTIONS(1527), 1, - anon_sym_struct, - ACTIONS(1530), 1, - anon_sym_union, - ACTIONS(1591), 1, - aux_sym_preproc_def_token1, - ACTIONS(1594), 1, - aux_sym_preproc_if_token1, - ACTIONS(1600), 1, - sym_preproc_directive, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, - sym__declaration_specifiers, - ACTIONS(1597), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1518), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1503), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1515), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(427), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4210] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1486), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1506), 1, + ACTIONS(1563), 1, anon_sym___attribute__, - ACTIONS(1509), 1, + ACTIONS(1566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1569), 1, anon_sym___declspec, - ACTIONS(1521), 1, + ACTIONS(1578), 1, sym_primitive_type, - ACTIONS(1524), 1, + ACTIONS(1581), 1, anon_sym_enum, - ACTIONS(1527), 1, + ACTIONS(1584), 1, anon_sym_struct, - ACTIONS(1530), 1, + ACTIONS(1587), 1, anon_sym_union, - ACTIONS(1603), 1, + ACTIONS(1622), 1, aux_sym_preproc_def_token1, - ACTIONS(1606), 1, + ACTIONS(1625), 1, aux_sym_preproc_if_token1, - ACTIONS(1612), 1, + ACTIONS(1631), 1, sym_preproc_directive, - ACTIONS(1615), 1, + ACTIONS(1634), 1, anon_sym_RBRACE, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1018), 1, sym__declaration_specifiers, - ACTIONS(1609), 2, + ACTIONS(1628), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1518), 4, + ACTIONS(1575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1503), 5, + ACTIONS(1560), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1515), 6, + ACTIONS(1572), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50179,7 +50725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4310] = 23, + [4367] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50194,25 +50740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1617), 1, + ACTIONS(1612), 1, aux_sym_preproc_def_token1, - ACTIONS(1619), 1, + ACTIONS(1614), 1, aux_sym_preproc_if_token1, - ACTIONS(1623), 1, + ACTIONS(1620), 1, sym_preproc_directive, - ACTIONS(1625), 1, - anon_sym_RBRACE, - STATE(700), 1, + ACTIONS(1636), 1, + aux_sym_preproc_if_token2, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1017), 1, sym__declaration_specifiers, - ACTIONS(1621), 2, + ACTIONS(1618), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50226,7 +50772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50239,7 +50785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50247,7 +50793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(430), 8, + STATE(425), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50256,7 +50802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4410] = 23, + [4467] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50271,25 +50817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1617), 1, + ACTIONS(1602), 1, aux_sym_preproc_def_token1, - ACTIONS(1619), 1, + ACTIONS(1604), 1, aux_sym_preproc_if_token1, - ACTIONS(1623), 1, + ACTIONS(1608), 1, sym_preproc_directive, - ACTIONS(1627), 1, + ACTIONS(1638), 1, anon_sym_RBRACE, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1018), 1, sym__declaration_specifiers, - ACTIONS(1621), 2, + ACTIONS(1606), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50303,7 +50849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50316,7 +50862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50324,7 +50870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(428), 8, + STATE(426), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50333,7 +50879,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4510] = 26, + [4567] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50348,31 +50894,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 1, + ACTIONS(1405), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1407), 1, anon_sym_RPAREN, - ACTIONS(1404), 1, + ACTIONS(1415), 1, anon_sym_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1629), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1642), 1, anon_sym_STAR, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, + STATE(938), 1, sym__declaration_specifiers, - STATE(1127), 1, + STATE(1148), 1, sym_parameter_list, - STATE(1151), 1, + STATE(1159), 1, sym__abstract_declarator, - STATE(1226), 2, + STATE(1201), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -50380,7 +50926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1131), 4, + STATE(1133), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -50391,7 +50937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50404,7 +50950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50412,7 +50958,63 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4615] = 21, + [4672] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(436), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1475), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1469), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4733] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50427,21 +51029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1633), 1, + ACTIONS(1644), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(640), 1, sym_ms_call_modifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1027), 1, + STATE(1030), 1, sym__declaration_specifiers, - STATE(359), 3, + STATE(364), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -50456,7 +51058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50476,7 +51078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50484,7 +51086,63 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4708] = 21, + [4826] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(434), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1650), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1648), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1646), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [4887] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50499,21 +51157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1635), 1, + ACTIONS(1653), 1, anon_sym_LBRACE, - STATE(641), 1, + STATE(631), 1, sym_ms_call_modifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1021), 1, + STATE(1031), 1, sym__declaration_specifiers, - STATE(113), 3, + STATE(319), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -50528,7 +51186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50548,7 +51206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50556,19 +51214,19 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4801] = 5, + [4980] = 5, ACTIONS(3), 1, sym_comment, STATE(434), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1641), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1639), 13, + ACTIONS(1657), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -50582,7 +51240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1637), 29, + ACTIONS(1655), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -50612,63 +51270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [4862] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(438), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1456), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1450), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [4923] = 21, + [5041] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50683,21 +51285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1644), 1, + ACTIONS(1659), 1, anon_sym_LBRACE, - STATE(636), 1, + STATE(644), 1, sym_ms_call_modifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1026), 1, + STATE(1020), 1, sym__declaration_specifiers, - STATE(270), 3, + STATE(363), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -50712,7 +51314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50732,7 +51334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50740,7 +51342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5016] = 21, + [5134] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50755,21 +51357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - ACTIONS(1646), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(652), 1, sym_ms_call_modifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, + STATE(1023), 1, sym__declaration_specifiers, - STATE(349), 3, + STATE(122), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -50784,7 +51386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50804,7 +51406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50812,167 +51414,217 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5109] = 5, + [5227] = 20, ACTIONS(3), 1, sym_comment, - STATE(434), 2, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1663), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1650), 13, + STATE(778), 1, + sym__expression, + STATE(1350), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1648), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [5170] = 3, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(624), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1654), 13, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1665), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym_string_literal, + STATE(793), 1, + sym__expression, + STATE(1370), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1652), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [5225] = 3, + STATE(624), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5407] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1658), 13, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1667), 1, + anon_sym_SEMI, + STATE(432), 1, + sym_string_literal, + STATE(801), 1, + sym__expression, + STATE(1340), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1656), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [5280] = 19, + STATE(624), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5497] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50980,18 +51632,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1660), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(804), 1, + STATE(765), 1, sym__expression, - STATE(1383), 1, + STATE(1395), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51005,29 +51659,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51035,11 +51689,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5366] = 19, + [5587] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51047,18 +51702,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1662), 1, + ACTIONS(1671), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(805), 1, + STATE(773), 1, sym__expression, - STATE(1334), 1, + STATE(1313), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51072,29 +51729,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51102,11 +51759,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5452] = 19, + [5677] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51114,18 +51772,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1664), 1, + ACTIONS(1673), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(791), 1, + STATE(772), 1, sym__expression, - STATE(1305), 1, + STATE(1311), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51139,29 +51799,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51169,11 +51829,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5538] = 19, + [5767] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51181,18 +51842,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1666), 1, + ACTIONS(1675), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(792), 1, + STATE(798), 1, sym__expression, - STATE(1303), 1, + STATE(1300), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51206,29 +51869,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51236,11 +51899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5624] = 19, + [5857] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51248,18 +51912,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1668), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1677), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(793), 1, + STATE(791), 1, sym__expression, - STATE(1299), 1, + STATE(1427), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51273,29 +51939,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51303,11 +51969,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5710] = 19, + [5947] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51315,18 +51982,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1670), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1679), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(795), 1, + STATE(761), 1, sym__expression, - STATE(1296), 1, + STATE(1424), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51340,29 +52009,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51370,11 +52039,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5796] = 19, + [6037] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51382,18 +52052,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1672), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1681), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(759), 1, + STATE(763), 1, sym__expression, - STATE(1475), 1, + STATE(1422), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51407,29 +52079,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51437,11 +52109,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5882] = 19, + [6127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51449,19 +52122,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(761), 1, + STATE(808), 1, sym__expression, - STATE(1238), 1, - sym_initializer_list, + STATE(1309), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -51474,29 +52149,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51504,11 +52179,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5968] = 19, + [6217] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51516,18 +52192,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1685), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(787), 1, + STATE(769), 1, sym__expression, - STATE(1377), 1, + STATE(1467), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51541,29 +52219,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51571,11 +52249,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6054] = 19, + [6307] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51583,18 +52262,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1676), 1, + ACTIONS(1687), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(797), 1, + STATE(771), 1, sym__expression, - STATE(1394), 1, + STATE(1460), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51608,29 +52289,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51638,11 +52319,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6140] = 19, + [6397] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51650,18 +52332,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1678), 1, + ACTIONS(1689), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(796), 1, + STATE(770), 1, sym__expression, - STATE(1312), 1, + STATE(1444), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51675,29 +52359,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51705,11 +52389,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6226] = 19, + [6487] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51717,18 +52402,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1680), 1, + ACTIONS(1691), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(800), 1, + STATE(802), 1, sym__expression, - STATE(1329), 1, + STATE(1348), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51742,29 +52429,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51772,11 +52459,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6312] = 19, + [6577] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51784,18 +52472,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1682), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1693), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(785), 1, + STATE(794), 1, sym__expression, - STATE(1412), 1, + STATE(1305), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51809,29 +52499,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51839,11 +52529,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6398] = 19, + [6667] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51851,18 +52542,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1684), 1, + ACTIONS(1695), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(783), 1, + STATE(780), 1, sym__expression, - STATE(1413), 1, + STATE(1383), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51876,29 +52569,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51906,11 +52599,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6484] = 19, + [6757] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51918,18 +52612,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1686), 1, + ACTIONS(1697), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(798), 1, + STATE(806), 1, sym__expression, - STATE(1393), 1, + STATE(1302), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51943,29 +52639,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51973,11 +52669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6570] = 19, + [6847] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51985,18 +52682,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1688), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1699), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(803), 1, + STATE(774), 1, sym__expression, - STATE(1388), 1, + STATE(1446), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52010,29 +52709,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52040,11 +52739,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6656] = 19, + [6937] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52052,19 +52752,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1690), 1, - anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(782), 1, + STATE(757), 1, sym__expression, - STATE(1416), 1, - sym_comma_expression, + STATE(1269), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52077,29 +52779,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52107,11 +52809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6742] = 19, + [7027] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52119,18 +52822,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1692), 1, + ACTIONS(1701), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(786), 1, + STATE(776), 1, sym__expression, - STATE(1386), 1, + STATE(1449), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52144,29 +52849,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52174,11 +52879,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6828] = 19, + [7117] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52186,19 +52892,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1694), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(806), 1, + STATE(589), 1, + sym_initializer_list, + STATE(590), 1, sym__expression, - STATE(1381), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52211,29 +52919,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52241,11 +52949,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6914] = 19, + [7207] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52253,18 +52962,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1696), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1703), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(781), 1, + STATE(807), 1, sym__expression, - STATE(1418), 1, + STATE(1310), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52278,29 +52989,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52308,11 +53019,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7000] = 19, + [7297] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52320,18 +53032,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1698), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1705), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(779), 1, + STATE(813), 1, sym__expression, - STATE(1421), 1, + STATE(1323), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52345,29 +53059,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52375,11 +53089,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7086] = 19, + [7387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52387,18 +53102,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1700), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1707), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(772), 1, + STATE(781), 1, sym__expression, - STATE(1438), 1, + STATE(1443), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52412,29 +53129,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52442,11 +53159,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7172] = 19, + [7477] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52454,18 +53172,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1702), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(801), 1, + STATE(783), 1, sym__expression, - STATE(1333), 1, + STATE(1442), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52479,29 +53199,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52509,11 +53229,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7258] = 19, + [7567] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52521,18 +53242,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1704), 1, + ACTIONS(1711), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(756), 1, + STATE(799), 1, sym__expression, - STATE(1307), 1, + STATE(1297), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52546,29 +53269,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52576,133 +53299,69 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7344] = 19, + [7657] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(617), 1, + STATE(589), 1, sym_initializer_list, - STATE(649), 1, + STATE(590), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(601), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [7430] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, - sym_identifier, - STATE(435), 1, - sym_string_literal, - STATE(605), 1, - sym__expression, - STATE(617), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52710,11 +53369,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7516] = 19, + [7747] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52722,18 +53382,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1706), 1, + ACTIONS(1713), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(809), 1, + STATE(784), 1, sym__expression, - STATE(1338), 1, + STATE(1436), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52747,29 +53409,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52777,11 +53439,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7602] = 19, + [7837] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52789,18 +53452,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1708), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1715), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(771), 1, + STATE(812), 1, sym__expression, - STATE(1440), 1, + STATE(1394), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52814,29 +53479,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52844,11 +53509,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7688] = 19, + [7927] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52856,18 +53522,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1710), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1717), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(790), 1, + STATE(760), 1, sym__expression, - STATE(1310), 1, + STATE(1386), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52881,29 +53549,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52911,11 +53579,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7774] = 19, + [8017] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52923,19 +53592,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1712), 1, - anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(770), 1, + STATE(758), 1, sym__expression, - STATE(1443), 1, - sym_comma_expression, + STATE(1234), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52948,29 +53619,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52978,11 +53649,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7860] = 19, + [8107] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52990,18 +53662,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1714), 1, + ACTIONS(1719), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(757), 1, + STATE(811), 1, sym__expression, - STATE(1345), 1, + STATE(1307), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53015,29 +53689,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53045,11 +53719,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7946] = 19, + [8197] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53057,18 +53732,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1716), 1, + ACTIONS(1721), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(812), 1, + STATE(788), 1, sym__expression, - STATE(1346), 1, + STATE(1426), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53082,96 +53759,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(621), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [8032] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1718), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_string_literal, - STATE(776), 1, - sym__expression, - STATE(1427), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53179,11 +53789,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8118] = 19, + [8287] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53191,18 +53802,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1720), 1, + ACTIONS(1723), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(762), 1, + STATE(764), 1, sym__expression, - STATE(1453), 1, + STATE(1439), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53216,29 +53829,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53246,11 +53859,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8204] = 19, + [8377] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53258,18 +53872,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1722), 1, + ACTIONS(1725), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(802), 1, + STATE(789), 1, sym__expression, - STATE(1389), 1, + STATE(1316), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53283,29 +53899,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53313,133 +53929,69 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8290] = 19, + [8467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, - sym_string_literal, - STATE(777), 1, - sym__expression, - STATE(1234), 1, - sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(621), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [8376] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1724), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(784), 1, + STATE(589), 1, + sym_initializer_list, + STATE(636), 1, sym__expression, - STATE(1468), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53447,11 +53999,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8462] = 19, + [8557] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53459,18 +54012,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1726), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1727), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(763), 1, + STATE(786), 1, sym__expression, - STATE(1452), 1, + STATE(1351), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53484,29 +54039,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53514,11 +54069,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8548] = 19, + [8647] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53526,18 +54082,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1728), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1729), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(778), 1, + STATE(767), 1, sym__expression, - STATE(1470), 1, + STATE(1330), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53551,29 +54109,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53581,11 +54139,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8634] = 19, + [8737] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53593,18 +54152,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1730), 1, + ACTIONS(1731), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(789), 1, + STATE(792), 1, sym__expression, - STATE(1371), 1, + STATE(1312), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53618,29 +54179,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53648,11 +54209,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8720] = 19, + [8827] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53660,18 +54222,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1732), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1733), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, STATE(775), 1, sym__expression, - STATE(1471), 1, + STATE(1453), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53685,29 +54249,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53715,11 +54279,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8806] = 19, + [8917] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53727,18 +54292,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1734), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(810), 1, + STATE(787), 1, sym__expression, - STATE(1364), 1, + STATE(1293), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53752,29 +54319,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53782,66 +54349,69 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8892] = 19, + [9007] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(896), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(605), 1, - sym__expression, - STATE(617), 1, + STATE(589), 1, sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + STATE(636), 1, + sym__expression, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53849,11 +54419,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8978] = 19, + [9097] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53861,18 +54432,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1736), 1, + ACTIONS(1737), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(811), 1, + STATE(762), 1, sym__expression, - STATE(1373), 1, + STATE(1379), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53886,29 +54459,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53916,11 +54489,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9064] = 19, + [9187] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53928,18 +54502,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1738), 1, + ACTIONS(1739), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(764), 1, + STATE(777), 1, sym__expression, - STATE(1450), 1, + STATE(1371), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53953,29 +54529,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53983,66 +54559,69 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9150] = 19, + [9277] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1366), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1741), 1, + anon_sym_SEMI, + STATE(432), 1, sym_string_literal, - STATE(617), 1, - sym_initializer_list, - STATE(649), 1, + STATE(759), 1, sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, + STATE(1377), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54050,64 +54629,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9236] = 18, + [9367] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(1740), 1, + ACTIONS(1743), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(634), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54115,64 +54697,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9319] = 18, + [9454] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(1742), 1, + ACTIONS(1745), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(634), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54180,11 +54765,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9402] = 18, + [9541] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54192,16 +54778,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1744), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1747), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(837), 1, + STATE(755), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54215,29 +54803,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54245,11 +54833,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9485] = 18, + [9628] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54257,17 +54846,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1746), 1, - anon_sym_COLON, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(835), 1, + STATE(716), 1, sym__expression, + STATE(1268), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54280,29 +54871,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54310,129 +54901,119 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9568] = 18, + [9715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1748), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(631), 1, - sym__expression, - ACTIONS(1126), 2, + ACTIONS(1751), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1749), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [9651] = 18, + [9770] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1750), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1753), 1, + anon_sym_RBRACK, + STATE(432), 1, sym_string_literal, - STATE(755), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54440,64 +55021,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9734] = 18, + [9857] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1752), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1755), 1, + anon_sym_RBRACK, + STATE(432), 1, sym_string_literal, - STATE(852), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54505,64 +55089,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9817] = 18, + [9944] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1757), 1, + anon_sym_RBRACK, + STATE(432), 1, sym_string_literal, - STATE(774), 1, + STATE(634), 1, sym__expression, - STATE(1430), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54570,76 +55157,64 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9900] = 18, + [10031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1356), 1, - sym_identifier, - STATE(435), 1, - sym_string_literal, - STATE(780), 1, - sym__expression, - STATE(1419), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1761), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(79), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1759), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [9983] = 18, + [10086] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54647,17 +55222,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1763), 1, + anon_sym_COLON, + STATE(432), 1, sym_string_literal, - STATE(746), 1, + STATE(827), 1, sym__expression, - STATE(1270), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54670,29 +55247,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54700,64 +55277,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10066] = 18, + [10173] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1754), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1765), 1, + anon_sym_RBRACK, + STATE(432), 1, sym_string_literal, - STATE(732), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54765,64 +55345,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10149] = 18, + [10260] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(1756), 1, + ACTIONS(1767), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(634), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54830,64 +55413,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10232] = 18, + [10347] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1758), 1, - anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(785), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + STATE(1435), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54895,64 +55481,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10315] = 18, + [10434] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(1760), 1, + ACTIONS(1769), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(634), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54960,64 +55549,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10398] = 18, + [10521] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1762), 1, - anon_sym_RBRACK, - STATE(435), 1, + ACTIONS(1771), 1, + anon_sym_COLON, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(814), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55025,64 +55617,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10481] = 18, + [10608] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1764), 1, - anon_sym_RBRACK, - STATE(435), 1, + ACTIONS(1773), 1, + anon_sym_RPAREN, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(743), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55090,64 +55685,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10564] = 18, + [10695] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - ACTIONS(1766), 1, + ACTIONS(1775), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(634), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55155,64 +55753,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10647] = 18, + [10782] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1768), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1777), 1, + anon_sym_RBRACK, + STATE(432), 1, sym_string_literal, - STATE(848), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55220,64 +55821,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10730] = 18, + [10869] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1770), 1, - anon_sym_RBRACK, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(795), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + STATE(1457), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55285,11 +55889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10813] = 17, + [10956] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55297,14 +55902,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1779), 1, + anon_sym_COLON, + STATE(432), 1, sym_string_literal, - STATE(767), 1, + STATE(841), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55318,29 +55927,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55348,62 +55957,67 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10893] = 17, + [11043] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1781), 1, + anon_sym_COLON, + STATE(432), 1, sym_string_literal, - STATE(815), 1, + STATE(850), 1, sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55411,62 +56025,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10973] = 17, + [11130] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(592), 1, + STATE(646), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55474,62 +56091,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11053] = 17, + [11214] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(814), 1, + STATE(609), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55537,11 +56157,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11133] = 17, + [11298] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55549,14 +56170,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(609), 1, + STATE(805), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55570,29 +56193,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55600,62 +56223,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11213] = 17, + [11382] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1772), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - STATE(435), 1, + ACTIONS(1130), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(682), 1, + STATE(643), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55663,62 +56289,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11293] = 17, + [11466] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1774), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - STATE(435), 1, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(840), 1, + STATE(817), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55726,62 +56355,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11373] = 17, + [11550] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(632), 1, + STATE(832), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55789,62 +56421,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11453] = 17, + [11634] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(631), 1, + STATE(844), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55852,62 +56487,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11533] = 17, + [11718] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(637), 1, + STATE(630), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55915,62 +56553,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11613] = 17, + [11802] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(586), 1, + STATE(613), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55978,62 +56619,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11693] = 17, + [11886] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(587), 1, + STATE(835), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56041,62 +56685,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11773] = 17, + [11970] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(588), 1, + STATE(641), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56104,62 +56751,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11853] = 17, + [12054] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(690), 1, + STATE(639), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56167,62 +56817,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11933] = 17, + [12138] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(590), 1, + STATE(650), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56230,62 +56883,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12013] = 17, + [12222] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(593), 1, + STATE(815), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56293,62 +56949,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12093] = 17, + [12306] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(597), 1, + STATE(819), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56356,62 +57015,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12173] = 17, + [12390] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(598), 1, + STATE(651), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56419,62 +57081,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12253] = 17, + [12474] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(600), 1, + STATE(632), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56482,62 +57147,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12333] = 17, + [12558] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(610), 1, + STATE(619), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56545,62 +57213,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12413] = 17, + [12642] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(602), 1, + STATE(646), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56608,26 +57279,29 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12493] = 17, + [12726] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1783), 1, + anon_sym_LPAREN2, + STATE(432), 1, sym_string_literal, - STATE(829), 1, + STATE(684), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56641,29 +57315,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56671,117 +57345,131 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12573] = 9, + [12810] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(1130), 1, + anon_sym_sizeof, + ACTIONS(1785), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_STAR, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1469), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1461), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 11, + STATE(432), 1, + sym_string_literal, + STATE(642), 1, + sym__expression, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1450), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12637] = 17, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(602), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [12894] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(827), 1, + STATE(638), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56789,62 +57477,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12717] = 17, + [12978] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(821), 1, + STATE(836), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56852,62 +57543,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12797] = 17, + [13062] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1776), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - STATE(435), 1, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(650), 1, + STATE(839), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56915,62 +57609,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12877] = 17, + [13146] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(633), 1, + STATE(779), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56978,62 +57675,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12957] = 17, + [13230] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(632), 1, + STATE(637), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57041,62 +57741,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13037] = 17, + [13314] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(637), 1, + STATE(848), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57104,62 +57807,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13117] = 17, + [13398] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1389), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(432), 1, sym_string_literal, - STATE(794), 1, + STATE(825), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57167,62 +57873,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13197] = 17, + [13482] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(629), 1, + STATE(645), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57230,11 +57939,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13277] = 17, + [13566] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57242,14 +57952,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(760), 1, + STATE(683), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57263,29 +57975,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57293,62 +58005,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13357] = 17, + [13650] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1789), 1, + anon_sym_LPAREN2, + STATE(432), 1, sym_string_literal, - STATE(638), 1, + STATE(585), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57356,62 +58071,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13437] = 17, + [13734] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(646), 1, + STATE(635), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57419,62 +58137,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13517] = 17, + [13818] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1120), 1, + anon_sym_LPAREN2, + ACTIONS(1130), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(666), 1, + STATE(634), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1124), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57482,62 +58203,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13597] = 17, + [13902] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(647), 1, + STATE(587), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57545,62 +58269,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13677] = 17, + [13986] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(630), 1, + STATE(845), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57608,62 +58335,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13757] = 17, + [14070] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(819), 1, + STATE(853), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57671,62 +58401,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13837] = 17, + [14154] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(634), 1, + STATE(638), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(1387), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57734,62 +58467,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13917] = 17, + [14238] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(635), 1, + STATE(610), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57797,62 +58533,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13997] = 17, + [14322] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(844), 1, + STATE(651), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57860,62 +58599,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14077] = 17, + [14406] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(683), 1, + STATE(612), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57923,62 +58665,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14157] = 17, + [14490] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(619), 1, + STATE(782), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57986,125 +58731,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14237] = 17, + [14574] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(639), 1, + STATE(860), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, - sym_true, - sym_false, - sym_null, - ACTIONS(87), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(89), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(601), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(618), 11, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_generic_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - [14317] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - STATE(435), 1, - sym_string_literal, - STATE(640), 1, - sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58112,62 +58797,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14397] = 17, + [14658] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(643), 1, + STATE(664), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58175,62 +58863,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14477] = 17, + [14742] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN2, - ACTIONS(896), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(591), 1, + STATE(681), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58238,62 +58929,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14557] = 17, + [14826] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(644), 1, + STATE(633), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58301,62 +58995,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14637] = 17, + [14910] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(825), 1, + STATE(588), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58364,62 +59061,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14717] = 17, + [14994] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(854), 1, + STATE(608), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58427,62 +59127,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14797] = 17, + [15078] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(609), 1, + STATE(856), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58490,11 +59193,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14877] = 17, + [15162] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58502,14 +59206,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(691), 1, + STATE(686), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58523,29 +59229,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58553,62 +59259,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14957] = 17, + [15246] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(672), 1, + STATE(842), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58616,62 +59325,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15037] = 17, + [15330] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1377), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1379), 1, + anon_sym_LPAREN2, + ACTIONS(1389), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(610), 1, + STATE(847), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1383), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58679,62 +59391,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15117] = 17, + [15414] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(432), 1, sym_string_literal, - STATE(684), 1, + STATE(607), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58742,11 +59457,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15197] = 17, + [15498] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58754,14 +59470,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(686), 1, + STATE(826), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58775,29 +59493,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58805,62 +59523,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15277] = 17, + [15582] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(859), 1, + STATE(816), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58868,62 +59589,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15357] = 17, + [15666] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(858), 1, + STATE(678), 1, sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58931,62 +59655,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15437] = 17, + [15750] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(633), 1, + STATE(820), 1, sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58994,62 +59721,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15517] = 17, + [15834] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(856), 1, + STATE(604), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59057,62 +59787,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15597] = 17, + [15918] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(853), 1, + STATE(618), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59120,62 +59853,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15677] = 17, + [16002] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(847), 1, + STATE(601), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59183,62 +59919,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15757] = 17, + [16086] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(608), 1, + STATE(613), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59246,11 +59985,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15837] = 17, + [16170] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59258,14 +59998,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(665), 1, + STATE(694), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59279,29 +60021,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59309,11 +60051,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15917] = 17, + [16254] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59321,14 +60064,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(694), 1, + STATE(824), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59342,29 +60087,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59372,11 +60117,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15997] = 17, + [16338] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59384,14 +60130,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(693), 1, + STATE(735), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59405,29 +60153,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59435,62 +60183,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16077] = 17, + [16422] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(813), 1, + STATE(599), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59498,62 +60249,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16157] = 17, + [16506] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1379), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1389), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(843), 1, + STATE(830), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1383), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1385), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1387), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(653), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59561,62 +60315,131 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16237] = 17, + [16590] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(842), 1, + STATE(598), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(602), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [16674] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + STATE(432), 1, + sym_string_literal, + STATE(688), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59624,62 +60447,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16317] = 17, + [16758] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1120), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1130), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(838), 1, + STATE(648), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(1122), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1124), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1128), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1385), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59687,62 +60513,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16397] = 17, + [16842] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(890), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(836), 1, + STATE(619), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(894), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(902), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59750,11 +60579,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16477] = 17, + [16926] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59762,14 +60592,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(591), 1, + STATE(672), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59783,29 +60615,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59813,11 +60645,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16557] = 17, + [17010] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59825,14 +60658,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(687), 1, + STATE(587), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59846,29 +60681,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59876,62 +60711,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16637] = 17, + [17094] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(896), 1, - anon_sym_sizeof, - ACTIONS(1778), 1, - anon_sym_LPAREN2, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(584), 1, + STATE(676), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(886), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(601), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59939,11 +60777,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16717] = 17, + [17178] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59951,14 +60790,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(710), 1, + STATE(677), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59972,29 +60813,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60002,62 +60843,65 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16797] = 17, + [17262] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(831), 1, + STATE(679), 1, sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(89), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(654), 5, + STATE(624), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60065,11 +60909,12 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16877] = 17, + [17346] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60077,14 +60922,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, - anon_sym__Generic, + anon_sym_offsetof, ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(432), 1, sym_string_literal, - STATE(668), 1, + STATE(680), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60098,29 +60945,95 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(624), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(595), 12, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [17430] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(432), 1, + sym_string_literal, + STATE(591), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(892), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(894), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(902), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, ACTIONS(89), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(621), 5, + STATE(602), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(595), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60128,14 +61041,70 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_offsetof_expression, sym_generic_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16957] = 3, + [17514] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1471), 1, + anon_sym_LPAREN2, + ACTIONS(1477), 1, + anon_sym_STAR, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1510), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1480), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1469), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 13, + ACTIONS(1793), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60149,7 +61118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1780), 30, + ACTIONS(1791), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60180,41 +61149,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17008] = 11, + [17629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1797), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1792), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1784), 22, + ACTIONS(1795), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -60222,7 +61177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60235,27 +61192,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17074] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1807), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1802), 29, + ACTIONS(1799), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -60263,9 +61238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60278,33 +61251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [17124] = 10, + [17745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1819), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -60313,9 +61268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1817), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -60323,7 +61279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60336,39 +61294,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17188] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [17795] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1790), 3, + ACTIONS(1823), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60391,53 +61350,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17254] = 13, + [17855] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + ACTIONS(1827), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1829), 1, + anon_sym_AMP_AMP, + ACTIONS(1831), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP, + ACTIONS(1843), 1, + anon_sym_EQ, + ACTIONS(1845), 1, + anon_sym_QMARK, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1806), 20, + ACTIONS(1825), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -60448,10 +61414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17324] = 3, + [17939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 13, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60465,7 +61431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1814), 29, + ACTIONS(1847), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60476,9 +61442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60495,50 +61461,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17374] = 14, + [17989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1812), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1853), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1851), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -60553,19 +61513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17446] = 7, + [18049] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1800), 2, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1822), 13, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60579,7 +61542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1820), 24, + ACTIONS(1855), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60602,24 +61565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [17504] = 8, + [18109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1826), 13, + ACTIONS(1861), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60633,9 +61582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1824), 22, + ACTIONS(1859), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -60644,6 +61594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60656,53 +61608,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17564] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1865), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + anon_sym_EQ, + ACTIONS(1863), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1812), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + [18209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 3, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1867), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60715,10 +61702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17638] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [18259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 13, + ACTIONS(1475), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60732,7 +61723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1830), 29, + ACTIONS(1469), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60762,10 +61753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17688] = 3, + [18309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 13, + ACTIONS(1873), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60779,7 +61770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1834), 29, + ACTIONS(1871), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60809,10 +61800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17738] = 3, + [18359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 13, + ACTIONS(1877), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60826,7 +61817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1838), 29, + ACTIONS(1875), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60856,52 +61847,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17788] = 16, + [18409] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1810), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1812), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 18, + ACTIONS(1823), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -60916,53 +61901,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17864] = 17, + [18473] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_EQ, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1812), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 18, + ACTIONS(1823), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -60977,10 +61956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17942] = 3, + [18539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 13, + ACTIONS(1881), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60994,7 +61973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1846), 29, + ACTIONS(1879), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61024,54 +62003,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17992] = 18, + [18589] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_EQ, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1850), 1, - anon_sym_AMP_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 17, + ACTIONS(1823), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1821), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -61086,10 +62060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18072] = 3, + [18659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 13, + ACTIONS(1475), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61103,7 +62077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1450), 29, + ACTIONS(1469), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61133,127 +62107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18122] = 9, + [18709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1790), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1808), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1806), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [18184] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_RPAREN, - ACTIONS(1406), 1, - sym_identifier, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, - sym__declaration_specifiers, - STATE(1226), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [18268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1854), 13, + ACTIONS(1885), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61267,7 +62124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1852), 29, + ACTIONS(1883), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61278,9 +62135,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61297,44 +62154,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18318] = 8, + [18759] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1858), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1841), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1856), 22, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -61349,10 +62212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18378] = 3, + [18831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 13, + ACTIONS(1889), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61366,7 +62229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1860), 29, + ACTIONS(1887), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61396,10 +62259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18428] = 3, + [18881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 13, + ACTIONS(1893), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61413,7 +62276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1864), 29, + ACTIONS(1891), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61443,60 +62306,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18478] = 20, + [18931] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1850), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1872), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1868), 15, + ACTIONS(1823), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -61507,44 +62365,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18562] = 8, + [19005] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + ACTIONS(1833), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1878), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1823), 2, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1876), 22, + ACTIONS(1841), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1805), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -61559,44 +62425,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18622] = 8, + [19081] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - STATE(595), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1831), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1841), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1821), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -61611,37 +62486,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18682] = 3, + [19159] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1829), 1, + anon_sym_AMP_AMP, + ACTIONS(1831), 1, anon_sym_PIPE, + ACTIONS(1833), 1, anon_sym_CARET, + ACTIONS(1835), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + STATE(597), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1880), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1837), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1839), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1805), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61654,14 +62548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18732] = 3, + [19239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 13, + ACTIONS(1897), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61675,7 +62565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1884), 29, + ACTIONS(1895), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61705,15 +62595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18782] = 3, + [19289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1823), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -61722,10 +62625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1888), 29, + ACTIONS(1821), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61734,8 +62636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61748,14 +62648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18832] = 3, + [19351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 13, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1901), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61769,10 +62674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1892), 29, + ACTIONS(1899), 24, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61781,8 +62685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -61797,55 +62699,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [18882] = 19, + [19409] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1850), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1827), 1, anon_sym_PIPE_PIPE, - ACTIONS(1898), 1, + ACTIONS(1829), 1, + anon_sym_AMP_AMP, + ACTIONS(1831), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP, + ACTIONS(1905), 1, anon_sym_EQ, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1896), 16, + ACTIONS(1903), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -61862,10 +62762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18964] = 3, + [19491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 13, + ACTIONS(1909), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61879,7 +62779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1900), 29, + ACTIONS(1907), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61909,10 +62809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19014] = 3, + [19541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 13, + ACTIONS(1913), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61926,7 +62826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1904), 29, + ACTIONS(1911), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61956,10 +62856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19064] = 3, + [19591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 13, + ACTIONS(1917), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61973,7 +62873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1450), 29, + ACTIONS(1915), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -62003,60 +62903,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19114] = 20, + [19641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1850), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1827), 1, anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, + ACTIONS(1829), 1, + anon_sym_AMP_AMP, + ACTIONS(1831), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP, + ACTIONS(1845), 1, anon_sym_QMARK, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_EQ, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1803), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1837), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1841), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1805), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1919), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [19725] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1925), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1908), 15, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1923), 22, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62067,7 +63019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19198] = 19, + [19785] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -62082,19 +63034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 1, + ACTIONS(1405), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1406), 1, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(1417), 1, sym_identifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, + STATE(938), 1, sym__declaration_specifiers, - STATE(1283), 2, + STATE(1201), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -62108,7 +63062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -62121,7 +63075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -62129,58 +63083,72 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19279] = 5, + [19869] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1467), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1456), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1450), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19332] = 3, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1405), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1417), 1, + sym_identifier, + STATE(702), 1, + sym__type_specifier, + STATE(749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(938), 1, + sym__declaration_specifiers, + STATE(1238), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [19950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 19, + ACTIONS(1793), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -62195,12 +63163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1360), 21, + ACTIONS(1791), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -62222,10 +63191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [19380] = 3, + [19999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 19, + ACTIONS(1373), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -62240,12 +63209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1364), 21, + ACTIONS(1375), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -62267,10 +63237,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [19428] = 3, + [20048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 19, + ACTIONS(1482), 1, + anon_sym_EQ, + ACTIONS(1486), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1475), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1469), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -62285,12 +63303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1780), 21, + ACTIONS(1371), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -62312,14 +63331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [19476] = 6, + [20150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1482), 1, anon_sym_EQ, - ACTIONS(1472), 1, + ACTIONS(1513), 1, anon_sym_COLON, - ACTIONS(1467), 10, + ACTIONS(1486), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62330,7 +63349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62343,7 +63362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + ACTIONS(1469), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -62359,14 +63378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19529] = 6, + [20203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1482), 1, anon_sym_EQ, - ACTIONS(1465), 1, + ACTIONS(1527), 1, anon_sym_COLON, - ACTIONS(1467), 10, + ACTIONS(1486), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62377,7 +63396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62390,7 +63409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + ACTIONS(1469), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -62406,14 +63425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19582] = 6, + [20256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1482), 1, anon_sym_EQ, - ACTIONS(1474), 1, + ACTIONS(1500), 1, anon_sym_COLON, - ACTIONS(1467), 10, + ACTIONS(1486), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62424,7 +63443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62437,7 +63456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + ACTIONS(1469), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -62453,14 +63472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19635] = 6, + [20309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1482), 1, anon_sym_EQ, - ACTIONS(1476), 1, + ACTIONS(1484), 1, anon_sym_COLON, - ACTIONS(1467), 10, + ACTIONS(1486), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62471,7 +63490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62484,7 +63503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + ACTIONS(1469), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -62500,55 +63519,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19688] = 20, + [20362] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1910), 1, + ACTIONS(1843), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1918), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1920), 1, + ACTIONS(1935), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1937), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1936), 1, + ACTIONS(1951), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1908), 11, + ACTIONS(1825), 11, anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62560,80 +63579,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19768] = 13, + [20442] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1932), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1916), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1808), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1806), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [19834] = 8, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + STATE(702), 1, + sym__type_specifier, + STATE(749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1033), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [20516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1826), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1823), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -62642,7 +63666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1824), 18, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62661,42 +63685,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19890] = 8, + [20574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + ACTIONS(1935), 1, + anon_sym_AMP_AMP, + ACTIONS(1937), 1, + anon_sym_PIPE, + ACTIONS(1939), 1, + anon_sym_CARET, + ACTIONS(1941), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1878), 13, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1943), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1876), 18, + ACTIONS(1931), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1821), 13, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -62709,22 +63743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19946] = 8, + [20650] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 13, + ACTIONS(1857), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62738,7 +63772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1855), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62757,101 +63791,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20002] = 14, + [20706] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1932), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1916), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1808), 4, + ACTIONS(1937), 1, anon_sym_PIPE, + ACTIONS(1939), 1, anon_sym_CARET, + ACTIONS(1941), 1, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1806), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20070] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - ACTIONS(1926), 1, - anon_sym_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1808), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 14, + ACTIONS(1821), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -62866,76 +63848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20140] = 17, + [20780] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, - sym_identifier, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1052), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [20214] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1800), 2, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1822), 13, + ACTIONS(1853), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62949,7 +63877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1820), 20, + ACTIONS(1851), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62968,58 +63896,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [20268] = 20, + [20836] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1872), 1, - anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - ACTIONS(1922), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1936), 1, - anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1823), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1868), 11, + ACTIONS(1821), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63030,50 +63952,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20348] = 16, + [20908] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1924), 1, - anon_sym_CARET, - ACTIONS(1926), 1, - anon_sym_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1914), 2, + ACTIONS(1823), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1934), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1806), 14, + anon_sym_EQ, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63086,49 +64000,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20420] = 17, + [20964] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1922), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, - anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1941), 1, anon_sym_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1823), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 14, + ACTIONS(1821), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, @@ -63143,64 +64055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20494] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, - sym_identifier, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1039), 1, - sym__declaration_specifiers, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(43), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(655), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [20568] = 17, + [21034] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63215,15 +64070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1051), 1, + STATE(1040), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63236,7 +64091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63249,7 +64104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63257,101 +64112,48 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20642] = 18, + [21108] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - ACTIONS(1922), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, - anon_sym_CARET, - ACTIONS(1926), 1, - anon_sym_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1806), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20718] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1821), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63364,87 +64166,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20776] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1945), 1, - anon_sym___attribute__, - ACTIONS(1948), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1951), 1, - anon_sym___declspec, - ACTIONS(1942), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - ACTIONS(1940), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1954), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(645), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1938), 11, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [20834] = 10, + [21176] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1916), 3, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 8, + ACTIONS(1807), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1799), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63463,39 +64217,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20894] = 11, + [21238] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(1823), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63514,7 +64267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20956] = 17, + [21298] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63529,15 +64282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(700), 1, + STATE(702), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1042), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63550,7 +64303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63563,7 +64316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(654), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63571,42 +64324,47 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [21030] = 8, + [21372] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1858), 13, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1856), 18, + ACTIONS(1821), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63619,39 +64377,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21086] = 11, + [21438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1925), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1916), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1792), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1784), 18, + ACTIONS(1923), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63670,53 +64425,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21148] = 19, + [21494] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1898), 1, + ACTIONS(1905), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(1918), 1, + ACTIONS(1933), 1, anon_sym_PIPE_PIPE, - ACTIONS(1920), 1, + ACTIONS(1935), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1937), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1941), 1, anon_sym_AMP, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, + ACTIONS(1943), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1945), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1949), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1896), 12, + ACTIONS(1903), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63729,32 +64484,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21226] = 3, + [21572] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 13, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1931), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1823), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1880), 24, - anon_sym_LPAREN2, + ACTIONS(1821), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63767,14 +64535,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [21634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1960), 1, + anon_sym___attribute__, + ACTIONS(1963), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1966), 1, + anon_sym___declspec, + ACTIONS(1957), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + ACTIONS(1955), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1969), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(649), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(1953), 11, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21692] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1921), 1, + anon_sym_EQ, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(1933), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1935), 1, + anon_sym_AMP_AMP, + ACTIONS(1937), 1, + anon_sym_PIPE, + ACTIONS(1939), 1, + anon_sym_CARET, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1951), 1, + anon_sym_QMARK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - [21271] = 3, + ACTIONS(1929), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1943), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1947), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1949), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1931), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1919), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + STATE(597), 1, + sym_argument_list, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1901), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63788,15 +64670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1802), 24, - anon_sym_LPAREN2, + ACTIONS(1899), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63811,14 +64691,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21316] = 5, + [21826] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + sym_identifier, + STATE(702), 1, + sym__type_specifier, + STATE(749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1051), 1, + sym__declaration_specifiers, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(43), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(654), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [21900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, + ACTIONS(1972), 1, anon_sym_EQ, - ACTIONS(1959), 10, + ACTIONS(1974), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63829,7 +64764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + ACTIONS(1475), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63842,7 +64777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 14, + ACTIONS(1469), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63857,7 +64792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21365] = 16, + [21949] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63872,13 +64807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(703), 1, + STATE(700), 1, sym__type_specifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(47), 4, anon_sym_signed, @@ -63891,7 +64826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63904,7 +64839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(645), 7, + STATE(649), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63912,10 +64847,10 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [21436] = 3, + [22020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 13, + ACTIONS(1819), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63929,7 +64864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1814), 24, + ACTIONS(1817), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63954,86 +64889,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21481] = 19, + [22065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(1797), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1795), 24, anon_sym_LPAREN2, - ACTIONS(1400), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1885), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(1969), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1883), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1056), 1, - sym__declarator, - STATE(1119), 1, - sym__abstract_declarator, - STATE(1127), 1, - sym_parameter_list, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(1963), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(758), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(818), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [21557] = 5, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22155] = 5, ACTIONS(3), 1, sym_comment, STATE(658), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1975), 6, + ACTIONS(1980), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(1971), 8, + ACTIONS(1976), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1973), 19, + ACTIONS(1978), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -64053,10 +65016,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21604] = 3, + [22203] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1409), 1, + anon_sym_LPAREN2, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1043), 1, + sym__declarator, + STATE(1125), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(1433), 1, + sym_ms_based_modifier, + ACTIONS(1985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(804), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(840), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [22279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 14, + ACTIONS(1993), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -64066,12 +65086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_sizeof, + anon_sym_offsetof, anon_sym__Generic, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1980), 19, + ACTIONS(1995), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -64091,10 +65112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [21645] = 3, + [22321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 9, + ACTIONS(1999), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64104,7 +65125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(1982), 24, + ACTIONS(1997), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64129,10 +65150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21686] = 3, + [22362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 8, + ACTIONS(2003), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64141,7 +65162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1986), 24, + ACTIONS(2001), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64166,23 +65187,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21726] = 3, + [22402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2007), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2005), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22441] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1823), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1821), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1358), 24, + anon_sym_QMARK, + [22498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2019), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -64202,12 +65304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21765] = 3, + [22537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(1086), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1088), 30, + ACTIONS(1084), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64238,12 +65340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21804] = 3, + [22576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1990), 30, + ACTIONS(1092), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64274,112 +65376,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21843] = 14, + [22615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1806), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [21904] = 20, + ACTIONS(1114), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1112), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1908), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [21977] = 3, + ACTIONS(1138), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1136), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1134), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1132), 30, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [22732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 1, + ACTIONS(1078), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2020), 30, + ACTIONS(1076), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64410,38 +65520,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22016] = 12, + [22771] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1808), 4, + ACTIONS(1823), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 13, + ACTIONS(1821), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -64451,16 +65557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [22073] = 3, + [22824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2024), 30, + ACTIONS(2021), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64491,12 +65599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22112] = 3, + [22863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, + ACTIONS(2027), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2028), 30, + ACTIONS(2025), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64527,12 +65635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22151] = 3, + [22902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2032), 30, + ACTIONS(2029), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64563,34 +65671,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22190] = 10, + [22941] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23010] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23077] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [23150] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23217] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2039), 1, + anon_sym_AMP, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23282] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1823), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1371), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1369), 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [23384] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1823), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1821), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23445] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1807), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 15, + ACTIONS(1799), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -64600,18 +66096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [22243] = 3, + [23502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(2053), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 30, + ACTIONS(2051), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64642,59 +66136,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22282] = 3, + [23541] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1052), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22321] = 3, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1919), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [23614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(1995), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2036), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(1993), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -64714,12 +66225,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22360] = 3, + [23653] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1823), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1821), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [23708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(2057), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2040), 30, + ACTIONS(2055), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64750,12 +66305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22399] = 3, + [23747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(2061), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2044), 30, + ACTIONS(2059), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64786,12 +66341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22438] = 3, + [23786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(2065), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1060), 30, + ACTIONS(2063), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64822,10 +66377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22477] = 3, + [23825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 7, + ACTIONS(2069), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64833,7 +66388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2048), 24, + ACTIONS(2067), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64858,12 +66413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22516] = 3, + [23864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2073), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 30, + ACTIONS(2071), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64894,196 +66449,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1978), 24, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [22594] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1792), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1784), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22651] = 19, + [23903] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - STATE(595), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1896), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22722] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 7, + ACTIONS(1903), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [22791] = 3, + [23974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2077), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2052), 30, + ACTIONS(2075), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65114,159 +66537,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22830] = 17, + [24013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 8, + ACTIONS(1375), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22897] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [22964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2058), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2056), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2060), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(1373), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -65286,114 +66573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23042] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2014), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23107] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1868), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [23180] = 3, + [24052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(2081), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2064), 30, + ACTIONS(2079), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65424,140 +66609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23219] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23282] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1808), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1806), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [23337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1362), 24, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23376] = 3, + [24091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2068), 30, + ACTIONS(2083), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65588,12 +66645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23415] = 3, + [24130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(2089), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2072), 30, + ACTIONS(2087), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65624,52 +66681,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23454] = 3, + [24169] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1096), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2091), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(43), 5, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [23493] = 9, + ACTIONS(2093), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(701), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + [24219] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2076), 3, + ACTIONS(2095), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65686,14 +66748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2078), 6, + ACTIONS(2097), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(645), 7, + STATE(649), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65701,16 +66763,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23543] = 9, + [24269] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2080), 3, + ACTIONS(2099), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65727,14 +66789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2082), 6, + ACTIONS(2101), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(699), 7, + STATE(704), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65742,13 +66804,13 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23593] = 3, + [24319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 2, + ACTIONS(1749), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1658), 28, + ACTIONS(1751), 28, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65777,16 +66839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23631] = 9, + [24357] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2084), 3, + ACTIONS(2103), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65803,14 +66865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2086), 6, + ACTIONS(2105), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(645), 7, + STATE(649), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65818,63 +66880,56 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23681] = 9, + [24407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(1759), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2088), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, + anon_sym_LBRACE, + ACTIONS(1761), 28, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2090), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON, - STATE(702), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - [23731] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(1078), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1654), 28, + anon_sym_RBRACE, + ACTIONS(1076), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -65894,15 +66949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23769] = 3, + [24482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(2031), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1060), 28, + anon_sym_RBRACE, + ACTIONS(2029), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -65928,12 +66983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23806] = 3, + [24519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(2027), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1088), 28, + ACTIONS(2025), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65962,20 +67017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23843] = 5, + [24556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2065), 2, anon_sym_LBRACK_LBRACK, - STATE(436), 1, - sym_string_literal, - ACTIONS(2092), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2048), 22, + anon_sym_RBRACE, + ACTIONS(2063), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65998,13 +67051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23884] = 3, + [24593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 2, + ACTIONS(1114), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2020), 27, + ACTIONS(1112), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66032,15 +67085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23921] = 3, + [24630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 2, + ACTIONS(2023), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1104), 27, + ACTIONS(2021), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66066,68 +67119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23958] = 22, + [24667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2094), 1, - anon_sym_COMMA, - ACTIONS(2096), 1, - anon_sym_RPAREN, - STATE(595), 1, - sym_argument_list, - STATE(1199), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [24033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2022), 1, + ACTIONS(1094), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2020), 28, + anon_sym_RBRACE, + ACTIONS(1092), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66153,12 +67153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24070] = 3, + [24704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(1086), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2052), 28, + ACTIONS(1084), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66187,15 +67187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24107] = 3, + [24741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 1, + ACTIONS(2085), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2056), 28, + anon_sym_RBRACE, + ACTIONS(2083), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66221,15 +67221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24144] = 3, + [24778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(2081), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2024), 28, + anon_sym_RBRACE, + ACTIONS(2079), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66255,12 +67255,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24181] = 3, + [24815] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + ACTIONS(2107), 1, + anon_sym_COMMA, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2109), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [24888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2032), 28, + ACTIONS(2079), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66289,15 +67341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24218] = 3, + [24925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 2, + ACTIONS(2007), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2052), 27, + ACTIONS(2005), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66323,12 +67375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24255] = 3, + [24962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(2057), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2064), 28, + ACTIONS(2055), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66357,15 +67409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24292] = 3, + [24999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 2, + ACTIONS(2019), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2056), 27, + ACTIONS(2017), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66391,15 +67443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24329] = 3, + [25036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 2, + ACTIONS(2053), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2060), 27, + ACTIONS(2051), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66425,13 +67477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24366] = 3, + [25073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2089), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2028), 27, + ACTIONS(2087), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66459,21 +67511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24403] = 7, + [25110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 1, - sym_identifier, - ACTIONS(2107), 1, - sym_primitive_type, - STATE(727), 1, + STATE(723), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2105), 4, + ACTIONS(2115), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2101), 7, + ACTIONS(2113), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -66481,7 +67529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2103), 15, + ACTIONS(2111), 17, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66497,15 +67545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [24448] = 3, + sym_primitive_type, + sym_identifier, + [25151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(2077), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2072), 28, + anon_sym_RBRACE, + ACTIONS(2075), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66531,13 +67581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24485] = 3, + [25188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(2061), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1052), 27, + ACTIONS(2059), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66565,15 +67615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24522] = 3, + [25225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 2, + ACTIONS(2065), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1060), 27, + ACTIONS(2063), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66599,20 +67649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24559] = 5, + [25262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2061), 1, anon_sym_LBRACK_LBRACK, - STATE(432), 1, - sym_string_literal, - ACTIONS(2092), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2048), 22, + ACTIONS(2059), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66635,20 +67683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24600] = 5, + [25299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2077), 1, anon_sym_LBRACK_LBRACK, - STATE(433), 1, - sym_string_literal, - ACTIONS(2092), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2048), 22, + ACTIONS(2075), 28, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66671,51 +67717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24641] = 5, + [25336] = 3, ACTIONS(3), 1, sym_comment, - STATE(727), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2113), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2111), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2109), 17, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_primitive_type, - sym_identifier, - [24682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 2, + ACTIONS(2089), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2040), 27, + ACTIONS(2087), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66741,15 +67751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24719] = 3, + [25373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 2, + ACTIONS(2085), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2044), 27, + ACTIONS(2083), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66775,12 +67785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24756] = 3, + [25410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2031), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2060), 28, + ACTIONS(2029), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66809,20 +67819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24793] = 5, + [25447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2069), 1, anon_sym_LBRACK_LBRACK, STATE(437), 1, sym_string_literal, - ACTIONS(2092), 5, + ACTIONS(2118), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2048), 22, + ACTIONS(2067), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66845,68 +67855,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24834] = 22, + [25488] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2116), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2118), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2122), 1, + anon_sym_RBRACE, + STATE(597), 1, sym_argument_list, - STATE(1220), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1798), 2, + STATE(1170), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [24909] = 3, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [25563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, + ACTIONS(2057), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2028), 28, + anon_sym_RBRACE, + ACTIONS(2055), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -66932,18 +67942,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24946] = 3, + [25600] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 2, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + ACTIONS(2124), 1, + anon_sym_COMMA, + ACTIONS(2126), 1, + anon_sym_RPAREN, + STATE(597), 1, + sym_argument_list, + STATE(1200), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [25675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1990), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(435), 1, + sym_string_literal, + ACTIONS(2118), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2067), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -66966,18 +68031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24983] = 3, + [25716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 2, + ACTIONS(2069), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2036), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(433), 1, + sym_string_literal, + ACTIONS(2118), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2067), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67000,13 +68067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25020] = 3, + [25757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 2, + ACTIONS(2073), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1092), 27, + ACTIONS(2071), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67034,13 +68101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25057] = 3, + [25794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 2, + ACTIONS(1138), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1096), 27, + ACTIONS(1136), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67068,13 +68135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25094] = 3, + [25831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(1134), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2068), 27, + ACTIONS(1132), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67102,13 +68169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25131] = 3, + [25868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(1086), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2072), 27, + ACTIONS(1084), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67136,15 +68203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25168] = 3, + [25905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(2007), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1052), 28, + anon_sym_RBRACE, + ACTIONS(2005), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67170,18 +68237,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25205] = 3, + [25942] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + ACTIONS(2128), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, + anon_sym_RPAREN, + STATE(597), 1, + sym_argument_list, + STATE(1187), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2009), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2011), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 2, + ACTIONS(2069), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2064), 27, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(438), 1, + sym_string_literal, + ACTIONS(2118), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2067), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67204,15 +68326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25242] = 3, + [26058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(2027), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2040), 28, + anon_sym_RBRACE, + ACTIONS(2025), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67238,12 +68360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25279] = 3, + [26095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(1078), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2044), 28, + ACTIONS(1076), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67272,12 +68394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25316] = 3, + [26132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1134), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1990), 28, + ACTIONS(1132), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67306,13 +68428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25353] = 3, + [26169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(2023), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1088), 27, + ACTIONS(2021), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67340,107 +68462,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25390] = 21, + [26206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2122), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [25463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1094), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 28, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, + ACTIONS(2132), 1, + sym_identifier, + ACTIONS(2141), 1, + sym_primitive_type, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2139), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1098), 1, + ACTIONS(2135), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1096), 28, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2137), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -67451,77 +68500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [25537] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2124), 1, - anon_sym_COMMA, - ACTIONS(2126), 1, - anon_sym_RBRACE, - STATE(595), 1, - sym_argument_list, - STATE(1191), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [25612] = 3, + [26251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2053), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2068), 28, + anon_sym_RBRACE, + ACTIONS(2051), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67547,12 +68534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25649] = 3, + [26288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1138), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 28, + ACTIONS(1136), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67581,15 +68568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25686] = 3, + [26325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 2, + ACTIONS(2073), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2024), 27, + ACTIONS(2071), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67615,15 +68602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25723] = 3, + [26362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 2, + ACTIONS(1114), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2032), 27, + ACTIONS(1112), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -67649,12 +68636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25760] = 3, + [26399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(1094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2036), 28, + ACTIONS(1092), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67683,3415 +68670,3210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25797] = 22, + [26436] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2116), 1, - anon_sym_COMMA, - ACTIONS(2128), 1, - anon_sym_RPAREN, - STATE(595), 1, - sym_argument_list, - STATE(1209), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [25872] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2128), 1, anon_sym_COMMA, - ACTIONS(2130), 1, + ACTIONS(2143), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + STATE(1172), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [25944] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1998), 1, - anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2132), 1, - anon_sym_RPAREN, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26016] = 15, + [26511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, - anon_sym_LPAREN2, - ACTIONS(1400), 1, - anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1043), 1, - sym__declarator, - STATE(1115), 1, - sym__abstract_declarator, - STATE(1127), 1, - sym_parameter_list, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(2134), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, + ACTIONS(2019), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2017), 27, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [26076] = 21, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26548] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26148] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2145), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [26618] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2138), 2, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2147), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [26218] = 20, + anon_sym_SEMI, + [26688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2149), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26288] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26760] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2142), 1, + ACTIONS(2151), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26360] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2144), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2153), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26432] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2146), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26504] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [26976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2148), 1, + ACTIONS(2157), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26576] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27048] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2150), 1, + ACTIONS(2159), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26648] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27120] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2152), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26718] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2154), 1, + ACTIONS(2163), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26790] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2156), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26860] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27336] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2158), 1, + ACTIONS(2167), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [26932] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27408] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2160), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2169), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27004] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27480] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2162), 1, + ACTIONS(2171), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + anon_sym_PERCENT, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27076] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2164), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2173), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27148] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27624] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2166), 1, + ACTIONS(2175), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27220] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27696] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2168), 1, + ACTIONS(2177), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27292] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27768] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2170), 1, + ACTIONS(2179), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27364] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27840] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2181), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2172), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [27434] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2174), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2183), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27506] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [27984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2176), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2185), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27578] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28056] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2178), 1, + ACTIONS(2187), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27650] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28128] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2180), 1, - anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27722] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2189), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [28198] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2182), 1, + ACTIONS(2191), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27794] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28270] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2184), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2193), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27866] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28342] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2186), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [27938] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2195), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [28412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2188), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2197), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28010] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28484] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2199), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28082] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28556] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2192), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2201), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28154] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28628] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2194), 1, + ACTIONS(2203), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28226] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28700] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2196), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2205), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28298] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2198), 1, + ACTIONS(2207), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28370] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28844] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2200), 1, + ACTIONS(2209), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28442] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28916] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2211), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28514] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [28988] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2204), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2213), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28586] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29060] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2215), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [28656] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29132] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2217), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28728] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29204] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2210), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2219), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28800] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29276] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2212), 1, + ACTIONS(2221), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28872] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29348] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2214), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2223), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [28944] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29420] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(2225), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29016] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29492] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2227), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29088] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29564] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2229), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29160] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29636] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2222), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2231), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29232] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29708] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2224), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2233), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29304] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2226), 1, + ACTIONS(2235), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29376] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [29852] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2228), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29448] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [29922] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1409), 1, + anon_sym_LPAREN2, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1044), 1, + sym__declarator, + STATE(1129), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(1433), 1, + sym_ms_based_modifier, + ACTIONS(2239), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [29982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29520] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2241), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [30052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29592] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30124] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2234), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29664] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30196] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2247), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29736] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30268] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2238), 1, + ACTIONS(2249), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29808] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30340] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2240), 1, + ACTIONS(2251), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [29880] = 21, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2107), 1, anon_sym_COMMA, - ACTIONS(2242), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29952] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - ACTIONS(2248), 1, - anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1806), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [30013] = 20, + [30484] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2260), 1, - anon_sym_COLON, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2255), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [30082] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30556] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2270), 1, - anon_sym_RBRACK, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_RPAREN, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30151] = 20, + [30628] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2259), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30220] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1043), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(857), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1008), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [30277] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1043), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1008), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1011), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [30334] = 20, + [30697] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2278), 1, - anon_sym_COMMA, - STATE(595), 1, + ACTIONS(2261), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [30403] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30766] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(1903), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30472] = 20, + [30833] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, - anon_sym_AMP_AMP, - ACTIONS(2010), 1, - anon_sym_PIPE, - ACTIONS(2012), 1, - anon_sym_CARET, - ACTIONS(2014), 1, - anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2280), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(1823), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(1821), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [30541] = 14, + anon_sym_RBRACK, + anon_sym_QMARK, + [30884] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__field_declarator, - STATE(1405), 1, + STATE(1044), 1, + sym__declarator, + STATE(1433), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(839), 2, + STATE(855), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(998), 2, + STATE(985), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, + ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -71099,774 +71881,617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [30598] = 20, + [30941] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2291), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30667] = 20, + [31010] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2293), 1, + anon_sym_COMMA, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30736] = 20, + [31079] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1908), 1, + ACTIONS(1745), 1, anon_sym_RBRACK, - ACTIONS(1912), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30805] = 20, + [31148] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 1, + ACTIONS(1765), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30874] = 20, + [31217] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1755), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2277), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2295), 1, anon_sym_QMARK, - ACTIONS(2288), 1, - anon_sym_SEMI, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [30943] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1088), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1009), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1011), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31000] = 20, + [31286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2296), 1, + ACTIONS(2297), 1, anon_sym_COLON, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [31069] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1088), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(849), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1009), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31126] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1868), 1, - anon_sym_RBRACK, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - ACTIONS(2248), 1, - anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, - anon_sym_AMP_AMP, - ACTIONS(2266), 1, - anon_sym_PIPE, - ACTIONS(2268), 1, - anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31195] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2286), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1066), 1, - sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(834), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(995), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31252] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1076), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(828), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1000), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31309] = 14, + [31355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, - anon_sym_STAR, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(998), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1011), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [31366] = 20, + ACTIONS(2267), 1, + anon_sym_SLASH, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2263), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2265), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2285), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1807), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1799), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [31408] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2298), 1, - anon_sym_COLON, - STATE(595), 1, + ACTIONS(2299), 1, + anon_sym_SEMI, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [31435] = 11, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31477] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, + anon_sym_PIPE, + ACTIONS(2037), 1, + anon_sym_CARET, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_QMARK, + ACTIONS(2301), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 11, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31546] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1777), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, + anon_sym_SLASH, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_PIPE, + ACTIONS(2275), 1, anon_sym_CARET, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_QMARK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2263), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2265), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2281), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [31486] = 20, + [31615] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1743), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2277), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2295), 1, anon_sym_QMARK, - ACTIONS(2300), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [31555] = 12, + [31684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_PIPE, + ACTIONS(2275), 1, + anon_sym_CARET, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_QMARK, + ACTIONS(2303), 1, + anon_sym_RBRACK, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1808), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1806), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2281), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [31608] = 14, + ACTIONS(2285), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31753] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - STATE(1067), 1, + STATE(1066), 1, sym__field_declarator, - STATE(1405), 1, + STATE(1354), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1006), 2, + STATE(1010), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1011), 2, + STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1107), 5, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -71879,38 +72504,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [31665] = 12, + [31810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1792), 4, + ACTIONS(1823), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1784), 9, + ACTIONS(1821), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -71920,222 +72545,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [31718] = 20, + [31863] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1078), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(982), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [31920] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1071), 1, + sym__field_declarator, + STATE(1354), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(831), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(974), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [31977] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, - anon_sym_AMP_AMP, - ACTIONS(2266), 1, - anon_sym_PIPE, - ACTIONS(2268), 1, - anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(1823), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31787] = 14, + ACTIONS(1821), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [32036] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2254), 2, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 7, + ACTIONS(1821), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [31844] = 15, + [32097] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1078), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(859), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(982), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [32154] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1753), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_PIPE, + ACTIONS(2275), 1, + anon_sym_CARET, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_QMARK, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [31903] = 20, + [32223] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1823), 1, + anon_sym_PIPE, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, - anon_sym_AMP_AMP, - ACTIONS(2266), 1, - anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_RBRACK, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31972] = 14, + ACTIONS(1821), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [32286] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - STATE(1056), 1, + STATE(1044), 1, sym__declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(818), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(967), 2, + STATE(985), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -72148,186 +72901,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32029] = 20, + [32343] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2317), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2254), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2256), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32098] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - ACTIONS(2248), 1, - anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2268), 1, - anon_sym_CARET, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1806), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [32161] = 20, + [32412] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2277), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2295), 1, anon_sym_QMARK, - ACTIONS(2304), 1, - anon_sym_COLON, - STATE(595), 1, + ACTIONS(2319), 1, + anon_sym_RBRACK, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32230] = 14, + [32481] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - STATE(1082), 1, - sym__type_declarator, - STATE(1300), 1, + STATE(1067), 1, + sym__field_declarator, + STATE(1354), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(969), 2, + STATE(986), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1011), 2, + STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -72335,375 +73042,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32287] = 20, + [32538] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1823), 2, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2263), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2265), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2281), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2285), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 7, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [32595] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(2013), 1, + anon_sym_SLASH, + ACTIONS(2033), 1, + anon_sym_AMP_AMP, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2039), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2321), 1, + anon_sym_COLON, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2043), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2045), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32356] = 20, + [32664] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1767), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32425] = 20, + [32733] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1919), 1, + anon_sym_RBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2277), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2295), 1, anon_sym_QMARK, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32494] = 17, + [32802] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 4, + ACTIONS(1821), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [32557] = 20, + [32865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1066), 1, + sym__field_declarator, + STATE(1354), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(843), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1010), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [32922] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2013), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2033), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2035), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2037), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2039), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_QMARK, - ACTIONS(2308), 1, + ACTIONS(2323), 1, anon_sym_COLON, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2009), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2011), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(2041), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [32626] = 20, + ACTIONS(2043), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2045), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32991] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1075), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(833), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(987), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [33048] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2287), 1, + anon_sym_LPAREN2, + ACTIONS(2289), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1043), 1, + sym__declarator, + STATE(1433), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(840), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1008), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [33105] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32695] = 18, + ACTIONS(1821), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [33170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1775), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2264), 1, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_QMARK, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [32760] = 14, + [33239] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - STATE(1031), 1, + STATE(1053), 1, sym__declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(1989), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(984), 2, + STATE(1003), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1011), 2, + STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(1987), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -72716,34 +73595,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32817] = 10, + [33296] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(1823), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 11, + ACTIONS(1821), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -72755,69 +73634,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [32866] = 19, + [33345] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1769), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1927), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2267), 1, anon_sym_SLASH, - ACTIONS(2250), 1, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_PIPE, + ACTIONS(2275), 1, + anon_sym_CARET, + ACTIONS(2277), 1, anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2295), 1, + anon_sym_QMARK, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2263), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2265), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2285), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33414] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + anon_sym_RBRACK, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, + anon_sym_SLASH, + ACTIONS(2269), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2271), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2273), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2275), 1, anon_sym_CARET, - STATE(595), 1, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_QMARK, + STATE(597), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1813), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1815), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1896), 2, + ACTIONS(2263), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2265), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2279), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2281), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2283), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2285), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33483] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1016), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1089), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + ACTIONS(1989), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(996), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1014), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(1987), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [33540] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1825), 1, anon_sym_RBRACK, + ACTIONS(1927), 1, + anon_sym_LPAREN2, + ACTIONS(2267), 1, + anon_sym_SLASH, + ACTIONS(2269), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_PIPE, + ACTIONS(2275), 1, + anon_sym_CARET, + ACTIONS(2277), 1, + anon_sym_AMP, + ACTIONS(2295), 1, anon_sym_QMARK, - ACTIONS(2244), 2, + STATE(597), 1, + sym_argument_list, + ACTIONS(1813), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1815), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2263), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2265), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2279), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2281), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2283), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2285), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32933] = 10, + [33609] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2310), 1, + ACTIONS(2325), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2099), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2101), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72833,7 +73854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(704), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72841,21 +73862,21 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [32981] = 10, + [33657] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2312), 1, + ACTIONS(2327), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2099), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2101), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72871,7 +73892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(704), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72879,21 +73900,21 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33029] = 10, + [33705] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2314), 1, + ACTIONS(2329), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2099), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2101), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72909,7 +73930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(704), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72917,21 +73938,21 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33077] = 10, + [33753] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(878), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2316), 1, + ACTIONS(2331), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2099), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2101), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72947,7 +73968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(704), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72955,7 +73976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33125] = 13, + [33801] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -72966,23 +73987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(1001), 1, + STATE(965), 1, sym__type_specifier, - STATE(1012), 1, + STATE(984), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, + STATE(1338), 1, sym_type_descriptor, - STATE(878), 2, + STATE(875), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1354), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -72995,46 +74016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33178] = 5, + [33854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2337), 1, anon_sym_LBRACE, - STATE(885), 1, - sym_enumerator_list, - ACTIONS(2320), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2318), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [33215] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(902), 1, + STATE(884), 1, sym_field_declaration_list, - ACTIONS(2326), 7, + ACTIONS(2335), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73042,7 +74031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2324), 16, + ACTIONS(2333), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73059,39 +74048,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33252] = 5, + [33891] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(899), 1, - sym_field_declaration_list, - ACTIONS(2332), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2330), 16, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1417), 1, + sym_identifier, + STATE(965), 1, + sym__type_specifier, + STATE(984), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1392), 1, + sym_type_descriptor, + STATE(875), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1365), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(886), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [33289] = 13, + [33944] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73102,23 +74099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(1001), 1, + STATE(965), 1, sym__type_specifier, - STATE(1012), 1, + STATE(984), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1461), 1, + STATE(1409), 1, sym_type_descriptor, - STATE(878), 2, + STATE(875), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1354), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73131,7 +74128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33342] = 13, + [33997] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73142,23 +74139,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(1001), 1, + STATE(965), 1, sym__type_specifier, - STATE(1012), 1, + STATE(984), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1479), 1, + STATE(1390), 1, sym_type_descriptor, - STATE(878), 2, + STATE(875), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1354), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73171,14 +74168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33395] = 5, + [34050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2337), 1, anon_sym_LBRACE, - STATE(883), 1, + STATE(902), 1, sym_field_declaration_list, - ACTIONS(2336), 7, + ACTIONS(2341), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73186,7 +74183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2334), 16, + ACTIONS(2339), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73203,14 +74200,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33432] = 5, + [34087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2347), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(899), 1, + sym_enumerator_list, + ACTIONS(2345), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2343), 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [34124] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_field_declaration_list, + ACTIONS(2351), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2349), 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + sym_identifier, + [34161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LBRACE, + STATE(893), 1, sym_field_declaration_list, - ACTIONS(2340), 7, + ACTIONS(2355), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73218,7 +74279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2338), 16, + ACTIONS(2353), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73235,7 +74296,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33469] = 12, + [34198] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1978), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2357), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(1976), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34234] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73246,21 +74338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(964), 1, sym__type_specifier, - STATE(873), 2, + STATE(984), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(47), 4, + ACTIONS(1365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73273,7 +74365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33519] = 12, + [34284] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73284,13 +74376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, + STATE(1050), 1, sym__type_specifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73298,7 +74390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73311,7 +74403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33569] = 12, + [34334] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73322,13 +74414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1046), 1, + STATE(1039), 1, sym__type_specifier, - STATE(875), 2, + STATE(881), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73336,7 +74428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73349,7 +74441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33619] = 12, + [34384] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73360,13 +74452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, + STATE(1060), 1, sym__type_specifier, - STATE(876), 2, + STATE(882), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73374,7 +74466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73387,38 +74479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33669] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1973), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2342), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(1971), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33705] = 12, + [34434] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73429,13 +74490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1037), 1, + STATE(1052), 1, sym__type_specifier, - STATE(879), 2, + STATE(880), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73443,7 +74504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73456,7 +74517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33755] = 12, + [34484] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73467,21 +74528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(974), 1, - sym__type_specifier, - STATE(1012), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(876), 2, + STATE(1035), 1, + sym__type_specifier, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1354), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73494,7 +74555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33805] = 12, + [34534] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73505,13 +74566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, + STATE(1041), 1, sym__type_specifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73519,7 +74580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73532,7 +74593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33855] = 12, + [34584] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73543,13 +74604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1041), 1, + STATE(1057), 1, sym__type_specifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73557,7 +74618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73570,7 +74631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33905] = 12, + [34634] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73581,13 +74642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1417), 1, sym_identifier, - STATE(721), 1, + STATE(749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1047), 1, + STATE(1056), 1, sym__type_specifier, - STATE(880), 2, + STATE(876), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73595,7 +74656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(886), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73608,10 +74669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33955] = 3, + [34684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2362), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73619,7 +74680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2345), 16, + ACTIONS(2360), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73636,10 +74697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33986] = 3, + [34715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 7, + ACTIONS(2366), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73647,7 +74708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2349), 16, + ACTIONS(2364), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73664,10 +74725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34017] = 3, + [34746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 7, + ACTIONS(2370), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73675,7 +74736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2353), 16, + ACTIONS(2368), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73692,18 +74753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34048] = 3, + [34777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 7, + ACTIONS(2372), 1, + anon_sym_LPAREN2, + ACTIONS(1480), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2357), 16, + ACTIONS(1467), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73720,10 +74782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34079] = 3, + [34810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 7, + ACTIONS(2377), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73731,7 +74793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2361), 16, + ACTIONS(2375), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73748,15 +74810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34110] = 3, + [34841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(2381), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2365), 22, + anon_sym_COLON, + ACTIONS(2379), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -73767,19 +74837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34141] = 3, + [34872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 7, + ACTIONS(2385), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73787,7 +74849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2369), 16, + ACTIONS(2383), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73804,19 +74866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34172] = 4, + [34903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_LPAREN2, - ACTIONS(1461), 6, + ACTIONS(2389), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1448), 16, + ACTIONS(2387), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73833,10 +74894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34205] = 3, + [34934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 7, + ACTIONS(2393), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73844,7 +74905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2376), 16, + ACTIONS(2391), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73861,10 +74922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34236] = 3, + [34965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 7, + ACTIONS(2397), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73872,7 +74933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2380), 16, + ACTIONS(2395), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73889,10 +74950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34267] = 3, + [34996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 7, + ACTIONS(2401), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73900,7 +74961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2384), 16, + ACTIONS(2399), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73917,10 +74978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34298] = 3, + [35027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 7, + ACTIONS(2405), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73928,7 +74989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2388), 16, + ACTIONS(2403), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73945,10 +75006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34329] = 3, + [35058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 7, + ACTIONS(2409), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73956,7 +75017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2392), 16, + ACTIONS(2407), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73973,10 +75034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34360] = 3, + [35089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 7, + ACTIONS(2413), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73984,7 +75045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2396), 16, + ACTIONS(2411), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74001,10 +75062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34391] = 3, + [35120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 7, + ACTIONS(2417), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74012,7 +75073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2400), 16, + ACTIONS(2415), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74029,10 +75090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34422] = 3, + [35151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 7, + ACTIONS(2421), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74040,7 +75101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2404), 16, + ACTIONS(2419), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74057,10 +75118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34453] = 3, + [35182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 7, + ACTIONS(2425), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74068,7 +75129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2408), 16, + ACTIONS(2423), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74085,10 +75146,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34484] = 3, + [35213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 7, + ACTIONS(2429), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2427), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74096,7 +75185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2412), 16, + ACTIONS(2431), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74113,10 +75202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34515] = 3, + [35275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 7, + ACTIONS(2437), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74124,7 +75213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2416), 16, + ACTIONS(2435), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74141,10 +75230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34546] = 3, + [35306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 7, + ACTIONS(2441), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74152,7 +75241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2420), 16, + ACTIONS(2439), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74169,10 +75258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34577] = 3, + [35337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 7, + ACTIONS(2445), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74180,7 +75269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2424), 16, + ACTIONS(2443), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74197,23 +75286,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34608] = 3, + [35368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 7, + ACTIONS(2449), 1, + anon_sym_LPAREN2, + STATE(963), 1, + sym_preproc_argument_list, + ACTIONS(2451), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2447), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2456), 1, anon_sym_LPAREN2, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(1480), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2453), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2428), 16, + ACTIONS(1467), 15, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74225,200 +75344,513 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34639] = 5, + [35437] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, + anon_sym_RPAREN, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2473), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2475), 1, + anon_sym_AMP_AMP, + ACTIONS(2477), 1, + anon_sym_PIPE, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + STATE(1173), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35492] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 1, + ACTIONS(2463), 1, + anon_sym_COMMA, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2473), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2475), 1, + anon_sym_AMP_AMP, + ACTIONS(2477), 1, + anon_sym_PIPE, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2491), 1, + anon_sym_RPAREN, + STATE(1189), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35547] = 5, + ACTIONS(2447), 1, + anon_sym_LF, + ACTIONS(2493), 1, anon_sym_LPAREN2, - STATE(922), 1, + ACTIONS(2495), 1, + sym_comment, + STATE(988), 1, sym_preproc_argument_list, - ACTIONS(2436), 5, + ACTIONS(2451), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2432), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35580] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 1, + sym_identifier, + ACTIONS(2499), 1, + anon_sym_RPAREN, + ACTIONS(2501), 1, + anon_sym_LPAREN2, + ACTIONS(2503), 1, + anon_sym_defined, + ACTIONS(2509), 1, + sym_number_literal, + ACTIONS(2505), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2507), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2511), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(908), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35623] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 1, + sym_identifier, + ACTIONS(2501), 1, + anon_sym_LPAREN2, + ACTIONS(2503), 1, + anon_sym_defined, + ACTIONS(2513), 1, + anon_sym_RPAREN, + ACTIONS(2515), 1, + sym_number_literal, + ACTIONS(2505), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2507), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2511), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(909), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35666] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 1, + sym_identifier, + ACTIONS(2501), 1, + anon_sym_LPAREN2, + ACTIONS(2503), 1, + anon_sym_defined, + ACTIONS(2517), 1, + sym_number_literal, + ACTIONS(2505), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2507), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2511), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(925), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35706] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + sym_identifier, + ACTIONS(2521), 1, + anon_sym_LPAREN2, + ACTIONS(2523), 1, + anon_sym_defined, + ACTIONS(2529), 1, + sym_number_literal, + ACTIONS(2525), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2527), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2531), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(989), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [35746] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2475), 1, + anon_sym_AMP_AMP, + ACTIONS(2477), 1, + anon_sym_PIPE, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2533), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [35794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2535), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35822] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2477), 1, + anon_sym_PIPE, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2533), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [35868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2539), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35896] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2543), 1, + anon_sym_PIPE, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2483), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2485), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34673] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - sym_identifier, - ACTIONS(2440), 1, - anon_sym_RPAREN, - ACTIONS(2442), 1, - anon_sym_LPAREN2, - ACTIONS(2444), 1, - anon_sym_defined, - ACTIONS(2450), 1, - sym_number_literal, - ACTIONS(2446), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2448), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2452), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(906), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [34716] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, + ACTIONS(2533), 4, anon_sym_COMMA, - ACTIONS(2456), 1, anon_sym_RPAREN, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2464), 1, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, + [35942] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2481), 1, anon_sym_AMP, - STATE(1175), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2458), 2, + ACTIONS(2543), 1, + anon_sym_PIPE, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2483), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2485), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34771] = 5, - ACTIONS(2432), 1, - anon_sym_LF, - ACTIONS(2482), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, + ACTIONS(2533), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [35986] = 10, + ACTIONS(3), 1, sym_comment, - STATE(968), 1, - sym_preproc_argument_list, - ACTIONS(2436), 18, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2469), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2483), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2485), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34804] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, + ACTIONS(2543), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2533), 5, anon_sym_COMMA, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2464), 1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2486), 1, - anon_sym_RPAREN, - STATE(1215), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(2458), 2, + [36028] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2485), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34859] = 10, + ACTIONS(2543), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2533), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36068] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2488), 1, - anon_sym_RPAREN, - ACTIONS(2490), 1, + ACTIONS(2545), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(908), 7, + STATE(1007), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74426,59 +75858,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34902] = 6, + [36108] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LPAREN2, - ACTIONS(2499), 1, - anon_sym_LBRACK, - ACTIONS(1461), 2, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2543), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2533), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [36144] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, anon_sym_STAR, - ACTIONS(2492), 2, + anon_sym_PERCENT, + ACTIONS(2543), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2533), 11, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 15, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - sym_identifier, - [34937] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2502), 1, + ACTIONS(2547), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(965), 7, + STATE(919), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74486,61 +75946,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34977] = 9, + [36218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_LPAREN2, - ACTIONS(2508), 1, - anon_sym_defined, - ACTIONS(2514), 1, - sym_number_literal, - ACTIONS(2510), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2551), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2549), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(991), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [35017] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2518), 1, + ACTIONS(2553), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(945), 7, + STATE(959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74548,30 +76002,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35057] = 9, + [36286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2555), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36314] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2520), 1, + ACTIONS(2559), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(941), 7, + STATE(981), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74579,30 +76058,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35097] = 9, + [36354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2522), 1, + ACTIONS(2561), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(937), 7, + STATE(992), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74610,30 +76089,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35137] = 9, + [36394] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2524), 1, + ACTIONS(2563), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(935), 7, + STATE(979), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74641,30 +76120,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35177] = 9, + [36434] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2526), 1, + ACTIONS(2565), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(934), 7, + STATE(995), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74672,30 +76151,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35217] = 9, + [36474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2528), 1, + ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(933), 7, + STATE(994), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74703,30 +76182,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35257] = 9, + [36514] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2530), 1, + ACTIONS(2569), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(932), 7, + STATE(1012), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74734,105 +76213,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2532), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2538), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2536), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2540), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35381] = 9, + [36554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2544), 1, + ACTIONS(2571), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1005), 7, + STATE(980), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74840,30 +76244,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35421] = 9, + [36594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2546), 1, + ACTIONS(2573), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(920), 7, + STATE(950), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74871,30 +76275,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35461] = 9, + [36634] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1409), 1, + anon_sym_LPAREN2, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym__declarator, + STATE(1138), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(1433), 1, + sym_ms_based_modifier, + ACTIONS(2575), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36682] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2548), 1, + ACTIONS(2577), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(973), 7, + STATE(1001), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74902,30 +76341,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35501] = 9, + [36722] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2550), 1, + ACTIONS(2579), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(957), 7, + STATE(999), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74933,30 +76372,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35541] = 9, + [36762] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2552), 1, + ACTIONS(2581), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(979), 7, + STATE(1006), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74964,30 +76403,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35581] = 9, + [36802] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2554), 1, + ACTIONS(2583), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(958), 7, + STATE(924), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74995,30 +76434,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35621] = 9, + [36842] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2556), 1, + ACTIONS(2585), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(966), 7, + STATE(998), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75026,93 +76465,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2558), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2562), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35717] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2568), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2566), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35749] = 3, + [36882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 5, + ACTIONS(2543), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2566), 15, + ACTIONS(2533), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -75128,226 +76490,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [35777] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2466), 1, - anon_sym_AMP_AMP, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2566), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [35825] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2566), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [35871] = 9, + [36910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - sym_identifier, - ACTIONS(2442), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, - anon_sym_defined, - ACTIONS(2570), 1, - sym_number_literal, - ACTIONS(2446), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2448), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2452), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1002), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [35911] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2568), 1, - anon_sym_PIPE, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(1642), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2566), 4, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1129), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2239), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [35957] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - sym_identifier, - ACTIONS(2442), 1, - anon_sym_LPAREN2, - ACTIONS(2444), 1, - anon_sym_defined, - ACTIONS(2572), 1, - sym_number_literal, - ACTIONS(2446), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2448), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2452), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(950), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [35997] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_LPAREN2, - ACTIONS(2508), 1, - anon_sym_defined, - ACTIONS(2574), 1, - sym_number_literal, - ACTIONS(2510), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2512), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2516), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(990), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36037] = 9, + anon_sym_COLON, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [36952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2576), 1, + ACTIONS(2589), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1004), 7, + STATE(920), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75355,63 +76553,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36077] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2568), 1, - anon_sym_PIPE, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2566), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [36121] = 9, + [36992] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2578), 1, + ACTIONS(2591), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(997), 7, + STATE(1009), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75419,30 +76584,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36161] = 9, + [37032] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2580), 1, + ACTIONS(2593), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(987), 7, + STATE(1011), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75450,30 +76615,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36201] = 9, + [37072] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2582), 1, + ACTIONS(2595), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(986), 7, + STATE(978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75481,62 +76646,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36241] = 10, + [37112] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2471), 1, anon_sym_SLASH, - ACTIONS(2458), 2, + ACTIONS(2473), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2475), 1, + anon_sym_AMP_AMP, + ACTIONS(2477), 1, + anon_sym_PIPE, + ACTIONS(2479), 1, + anon_sym_CARET, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2469), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2483), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2485), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2489), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2568), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2566), 5, + ACTIONS(2597), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [36283] = 9, + [37162] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2584), 1, + ACTIONS(2599), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(985), 7, + STATE(1013), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75544,30 +76713,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36323] = 9, + [37202] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2586), 1, + ACTIONS(2601), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(983), 7, + STATE(997), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75575,30 +76744,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36363] = 9, + [37242] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2588), 1, + ACTIONS(2603), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(982), 7, + STATE(917), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75606,30 +76775,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36403] = 9, + [37282] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2590), 1, + ACTIONS(2605), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(981), 7, + STATE(915), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75637,61 +76806,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36443] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2568), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2566), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [36483] = 9, + [37322] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2592), 1, + ACTIONS(2607), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(977), 7, + STATE(1002), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75699,30 +76837,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36523] = 9, + [37362] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2594), 1, + ACTIONS(2609), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(976), 7, + STATE(944), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75730,30 +76868,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36563] = 9, + [37402] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2596), 1, + ACTIONS(2611), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1007), 7, + STATE(973), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75761,96 +76899,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36603] = 13, + [37442] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(1400), 1, + ACTIONS(1642), 1, anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(1969), 1, + ACTIONS(1991), 1, anon_sym_LBRACK, - STATE(1099), 1, - sym__declarator, - STATE(1127), 1, - sym_parameter_list, - STATE(1130), 1, + STATE(1125), 1, sym__abstract_declarator, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(2598), 2, + STATE(1148), 1, + sym_parameter_list, + STATE(945), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1985), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1131), 4, + anon_sym_COLON, + STATE(1133), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [36651] = 9, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_LPAREN2, - ACTIONS(2508), 1, - anon_sym_defined, - ACTIONS(2600), 1, - sym_number_literal, - ACTIONS(2510), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2615), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2613), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(975), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [36691] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2602), 1, + ACTIONS(2617), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1003), 7, + STATE(983), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75858,54 +76987,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36731] = 7, + [37552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2621), 5, anon_sym_SLASH, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2568), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2566), 9, + ACTIONS(2619), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [36767] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2458), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2568), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2566), 11, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -75915,16 +77012,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36801] = 3, + [37580] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1126), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2623), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 5, + ACTIONS(2627), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1830), 15, + ACTIONS(2625), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -75940,41 +77069,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36829] = 3, + [37650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2604), 15, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1127), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(966), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2629), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_COLON, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37692] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36857] = 3, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1116), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(962), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2631), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37734] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + anon_sym_LBRACK, + STATE(1121), 1, + sym__abstract_declarator, + STATE(1148), 1, + sym_parameter_list, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2633), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1133), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2587), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [37776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 5, + ACTIONS(1913), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2608), 15, + ACTIONS(1911), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -75990,30 +77190,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [36885] = 9, + [37804] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2497), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2501), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2503), 1, anon_sym_defined, - ACTIONS(2612), 1, + ACTIONS(2635), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2505), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2511), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(980), 7, + STATE(921), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76021,30 +77221,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36925] = 9, + [37844] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2519), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2521), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2523), 1, anon_sym_defined, - ACTIONS(2614), 1, + ACTIONS(2637), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2525), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2527), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2531), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(993), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76052,355 +77252,157 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36965] = 3, + [37884] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2616), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2497), 1, + sym_identifier, + ACTIONS(2501), 1, + anon_sym_LPAREN2, + ACTIONS(2503), 1, + anon_sym_defined, + ACTIONS(2639), 1, + sym_number_literal, + ACTIONS(2505), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36993] = 14, + ACTIONS(2511), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(976), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2464), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, - anon_sym_AMP_AMP, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2458), 2, + ACTIONS(2497), 1, + sym_identifier, + ACTIONS(2501), 1, + anon_sym_LPAREN2, + ACTIONS(2503), 1, + anon_sym_defined, + ACTIONS(2641), 1, + sym_number_literal, + ACTIONS(2505), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2507), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2620), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37043] = 3, - ACTIONS(2484), 1, + ACTIONS(2511), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(922), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [37964] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_LF, - ACTIONS(2534), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2645), 5, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37070] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1043), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [37111] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LF, - ACTIONS(2542), 18, + ACTIONS(2643), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37138] = 10, + [37992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1080), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [37179] = 12, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_LF, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, - anon_sym_PIPE, - ACTIONS(2634), 1, - anon_sym_CARET, - ACTIONS(2636), 1, - anon_sym_AMP, - ACTIONS(2624), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2638), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2642), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2626), 3, - anon_sym_STAR, + ACTIONS(2471), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2640), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [37224] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_LF, - ACTIONS(2538), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2469), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2543), 4, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37251] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LF, - ACTIONS(2560), 18, + ACTIONS(2533), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37278] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, - anon_sym_SLASH, - ACTIONS(2464), 1, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, anon_sym_CARET, - ACTIONS(2472), 1, - anon_sym_AMP, - ACTIONS(2644), 1, - anon_sym_RPAREN, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37327] = 10, + [38024] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - STATE(1145), 1, - sym__abstract_declarator, - ACTIONS(2646), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(996), 2, + STATE(1066), 1, + sym__field_declarator, + STATE(1354), 1, + sym_ms_based_modifier, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37368] = 4, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2626), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2568), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37397] = 3, - ACTIONS(2484), 1, + [38065] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2555), 1, anon_sym_LF, - ACTIONS(2568), 18, + ACTIONS(2557), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76419,45 +77421,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37424] = 12, - ACTIONS(2484), 1, + [38092] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2568), 1, + ACTIONS(2471), 1, + anon_sym_SLASH, + ACTIONS(2473), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2475), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2477), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2479), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2624), 2, + ACTIONS(2647), 1, + anon_sym_RPAREN, + ACTIONS(2467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2642), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2469), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [37469] = 3, - ACTIONS(2484), 1, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38141] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2616), 1, + ACTIONS(2643), 1, anon_sym_LF, - ACTIONS(2618), 18, + ACTIONS(2645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76476,184 +77480,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37496] = 12, - ACTIONS(2484), 1, + [38168] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2649), 1, + anon_sym_LF, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2650), 1, - anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37541] = 12, - ACTIONS(2484), 1, + [38213] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2652), 1, + ACTIONS(2671), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37586] = 11, - ACTIONS(2484), 1, + [38258] = 11, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2533), 1, anon_sym_LF, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2568), 2, + ACTIONS(2543), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37629] = 10, - ACTIONS(2484), 1, + [38301] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2634), 1, + ACTIONS(2655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2657), 1, + anon_sym_AMP_AMP, + ACTIONS(2659), 1, + anon_sym_PIPE, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2624), 2, + ACTIONS(2673), 1, + anon_sym_LF, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2568), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37670] = 9, - ACTIONS(2484), 1, + [38346] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2636), 1, - anon_sym_AMP, - ACTIONS(2624), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2638), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2642), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, anon_sym_STAR, + STATE(1089), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38387] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2568), 4, + ACTIONS(2473), 1, anon_sym_PIPE_PIPE, + ACTIONS(2475), 1, anon_sym_AMP_AMP, + ACTIONS(2477), 1, anon_sym_PIPE, + ACTIONS(2479), 1, anon_sym_CARET, - ACTIONS(2640), 4, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2675), 1, + anon_sym_RPAREN, + ACTIONS(2467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2469), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2483), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2485), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2487), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [37709] = 10, + ACTIONS(2489), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38436] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2141), 1, + sym_primitive_type, + ACTIONS(2677), 1, + sym_identifier, + STATE(723), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2139), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2135), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2137), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38471] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1058), 1, + STATE(1053), 1, sym__declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -76666,56 +77736,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37750] = 8, - ACTIONS(2484), 1, + [38512] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + STATE(1065), 1, + sym__field_declarator, + STATE(1354), 1, + sym_ms_based_modifier, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38553] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1078), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38594] = 3, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2625), 1, + anon_sym_LF, + ACTIONS(2627), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38621] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2657), 1, + anon_sym_AMP_AMP, + ACTIONS(2659), 1, + anon_sym_PIPE, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2663), 1, + anon_sym_AMP, + ACTIONS(2679), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2568), 5, + [38666] = 3, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_LF, + ACTIONS(2537), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [37787] = 7, - ACTIONS(2484), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38693] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2619), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2621), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2642), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2568), 7, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38720] = 4, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2543), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -76723,39 +77922,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [37822] = 6, - ACTIONS(2484), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38749] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2657), 1, + anon_sym_AMP_AMP, + ACTIONS(2659), 1, + anon_sym_PIPE, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2663), 1, + anon_sym_AMP, + ACTIONS(2681), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2642), 2, + ACTIONS(2665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2568), 11, + ACTIONS(2667), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [38794] = 12, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2543), 1, anon_sym_PIPE_PIPE, + ACTIONS(2657), 1, anon_sym_AMP_AMP, + ACTIONS(2659), 1, anon_sym_PIPE, + ACTIONS(2661), 1, anon_sym_CARET, + ACTIONS(2663), 1, anon_sym_AMP, + ACTIONS(2651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37855] = 3, - ACTIONS(1830), 1, - anon_sym_LF, - ACTIONS(2484), 1, + [38839] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(1832), 18, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2543), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76774,102 +78018,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37882] = 10, + [38866] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2315), 1, anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - STATE(1146), 1, - sym__abstract_declarator, - ACTIONS(2654), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(876), 2, + STATE(1086), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37923] = 5, - ACTIONS(2484), 1, + [38907] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2624), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2626), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2568), 13, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, + ACTIONS(2657), 1, anon_sym_AMP_AMP, + ACTIONS(2659), 1, anon_sym_PIPE, + ACTIONS(2661), 1, anon_sym_CARET, + ACTIONS(2663), 1, anon_sym_AMP, + ACTIONS(2683), 1, + anon_sym_LF, + ACTIONS(2651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37954] = 12, - ACTIONS(2484), 1, + [38952] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2656), 1, + ACTIONS(2685), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37999] = 3, - ACTIONS(2484), 1, + [38997] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2604), 1, + ACTIONS(2613), 1, anon_sym_LF, - ACTIONS(2606), 18, + ACTIONS(2615), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76888,12 +78139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38026] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2608), 1, + [39024] = 3, + ACTIONS(1911), 1, anon_sym_LF, - ACTIONS(2610), 18, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(1913), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76912,156 +78163,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38053] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1115), 1, - sym__abstract_declarator, - STATE(1127), 1, - sym_parameter_list, - ACTIONS(2134), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38094] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2286), 1, - anon_sym_STAR, - STATE(1069), 1, - sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38135] = 10, - ACTIONS(3), 1, + [39051] = 10, + ACTIONS(2495), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2661), 1, + anon_sym_CARET, + ACTIONS(2663), 1, + anon_sym_AMP, + ACTIONS(2651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2665), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2543), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(2653), 3, anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - STATE(1129), 1, - sym__abstract_declarator, - ACTIONS(2658), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38176] = 12, - ACTIONS(2484), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2667), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [39092] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2660), 1, + ACTIONS(2687), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38221] = 10, + [39137] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1067), 1, - sym__field_declarator, - STATE(1405), 1, + STATE(1038), 1, + sym__declarator, + STATE(1433), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -77069,12 +78258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38262] = 3, - ACTIONS(2484), 1, + [39178] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2539), 1, anon_sym_LF, - ACTIONS(2564), 18, + ACTIONS(2541), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -77093,221 +78282,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38289] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1088), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38330] = 10, - ACTIONS(3), 1, + [39205] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2549), 1, + anon_sym_LF, + ACTIONS(2551), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - STATE(1140), 1, - sym__abstract_declarator, - ACTIONS(2662), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(989), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38371] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2462), 1, anon_sym_SLASH, - ACTIONS(2464), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, anon_sym_PIPE, - ACTIONS(2470), 1, anon_sym_CARET, - ACTIONS(2472), 1, anon_sym_AMP, - ACTIONS(2664), 1, - anon_sym_RPAREN, - ACTIONS(2458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2460), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2474), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(2478), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38420] = 12, - ACTIONS(2484), 1, + [39232] = 9, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, - anon_sym_PIPE, - ACTIONS(2634), 1, - anon_sym_CARET, - ACTIONS(2636), 1, - anon_sym_AMP, - ACTIONS(2666), 1, + ACTIONS(2533), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2663), 1, + anon_sym_AMP, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2543), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38465] = 12, - ACTIONS(2484), 1, + [39271] = 8, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, - anon_sym_PIPE, - ACTIONS(2634), 1, - anon_sym_CARET, - ACTIONS(2636), 1, - anon_sym_AMP, - ACTIONS(2668), 1, + ACTIONS(2533), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38510] = 12, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2628), 1, + ACTIONS(2543), 5, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2670), 1, + [39308] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2287), 1, + anon_sym_LPAREN2, + ACTIONS(2289), 1, + anon_sym_STAR, + STATE(1044), 1, + sym__declarator, + STATE(1433), 1, + sym_ms_based_modifier, + STATE(874), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [39349] = 7, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2533), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38555] = 10, + ACTIONS(2543), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39384] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1059), 1, + STATE(1067), 1, sym__field_declarator, - STATE(1405), 1, + STATE(1354), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(874), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1107), 5, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -77320,151 +78455,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38596] = 12, - ACTIONS(2484), 1, + [39425] = 6, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2653), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2543), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [39458] = 12, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2655), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2657), 1, anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2659), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2661), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2663), 1, anon_sym_AMP, - ACTIONS(2672), 1, + ACTIONS(2689), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2651), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2665), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2653), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2667), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38641] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1031), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38682] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1082), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - STATE(876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38723] = 10, - ACTIONS(3), 1, + [39503] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2533), 1, + anon_sym_LF, + ACTIONS(2651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2653), 3, anon_sym_STAR, - ACTIONS(1969), 1, - anon_sym_LBRACK, - STATE(1119), 1, - sym__abstract_declarator, - STATE(1127), 1, - sym_parameter_list, - ACTIONS(1963), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(994), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2648), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38764] = 7, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2543), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39534] = 7, ACTIONS(3), 1, sym_comment, - STATE(1013), 1, + STATE(1016), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(2676), 2, + ACTIONS(2693), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2681), 2, + ACTIONS(2698), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1011), 2, + STATE(1014), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2678), 3, + ACTIONS(2695), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2674), 8, + ACTIONS(2691), 8, anon_sym___based, anon_sym_const, anon_sym_volatile, @@ -77473,40 +78568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [38798] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2107), 1, - sym_primitive_type, - ACTIONS(2684), 1, - sym_identifier, - STATE(727), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2105), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2101), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2103), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [38832] = 3, + [39568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 2, + ACTIONS(2703), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2686), 13, + ACTIONS(2701), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -77520,13 +78588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [38855] = 3, + [39591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 2, + ACTIONS(2707), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2690), 13, + ACTIONS(2705), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -77540,600 +78608,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [38878] = 11, + [39614] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(2694), 1, + ACTIONS(2709), 1, anon_sym_SEMI, - ACTIONS(2696), 1, + ACTIONS(2711), 1, anon_sym_COLON, - STATE(1048), 1, + STATE(1045), 1, sym__field_declarator, - STATE(1403), 1, - sym_bitfield_clause, - STATE(1405), 1, + STATE(1354), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1359), 1, + sym_bitfield_clause, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38916] = 11, + [39652] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(2696), 1, + ACTIONS(2711), 1, anon_sym_COLON, - ACTIONS(2698), 1, + ACTIONS(2713), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1058), 1, sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - STATE(1409), 1, + STATE(1353), 1, sym_bitfield_clause, - STATE(1107), 5, + STATE(1354), 1, + sym_ms_based_modifier, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38954] = 11, + [39690] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2309), 1, anon_sym_STAR, - ACTIONS(2696), 1, + ACTIONS(2711), 1, anon_sym_COLON, - ACTIONS(2700), 1, + ACTIONS(2715), 1, anon_sym_SEMI, - STATE(1049), 1, + STATE(1048), 1, sym__field_declarator, - STATE(1352), 1, - sym_bitfield_clause, - STATE(1405), 1, + STATE(1354), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1488), 1, + sym_bitfield_clause, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38992] = 9, + [39728] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1062), 1, + STATE(1032), 1, sym__declarator, - STATE(1205), 1, + STATE(1215), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39024] = 9, + [39760] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(592), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1023), 1, - sym__declarator, - STATE(1227), 1, - sym_init_declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [39056] = 9, + ACTIONS(2721), 1, + anon_sym_SEMI, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, + anon_sym_EQ, + STATE(331), 1, + sym_compound_statement, + STATE(1046), 1, + sym_parameter_list, + STATE(1204), 1, + aux_sym_declaration_repeat1, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [39798] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1070), 1, sym__declarator, - STATE(1227), 1, + STATE(1217), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39088] = 9, + [39830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1028), 1, sym__declarator, - STATE(1190), 1, + STATE(1195), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39120] = 9, + [39862] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1074), 1, + STATE(1061), 1, sym__declarator, - STATE(1255), 1, + STATE(1215), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39152] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(324), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2706), 1, - anon_sym_SEMI, - ACTIONS(2708), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - STATE(367), 1, - sym_compound_statement, - STATE(1050), 1, - sym_parameter_list, - STATE(1207), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39190] = 12, + [39894] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(372), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2712), 1, + ACTIONS(2727), 1, anon_sym_SEMI, - STATE(322), 1, + STATE(312), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1185), 1, + STATE(1183), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39228] = 12, + [39932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - ACTIONS(2714), 1, - anon_sym_SEMI, - STATE(263), 1, - sym_compound_statement, - STATE(1050), 1, - sym_parameter_list, - STATE(1211), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39266] = 9, + ACTIONS(2289), 1, + anon_sym_STAR, + STATE(1090), 1, + sym__declarator, + STATE(1288), 1, + sym_init_declarator, + STATE(1433), 1, + sym_ms_based_modifier, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [39964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1025), 1, + STATE(1072), 1, sym__declarator, - STATE(1205), 1, + STATE(1211), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39298] = 9, + [39996] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(119), 1, + anon_sym_LBRACE, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + ACTIONS(2725), 1, + anon_sym_EQ, + ACTIONS(2729), 1, + anon_sym_SEMI, + STATE(105), 1, + sym_compound_statement, + STATE(1046), 1, + sym_parameter_list, + STATE(1207), 1, + aux_sym_declaration_repeat1, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1069), 1, sym__declarator, - STATE(1192), 1, + STATE(1195), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39330] = 9, + [40066] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1063), 1, + STATE(1021), 1, sym__declarator, - STATE(1192), 1, + STATE(1211), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39362] = 9, + [40098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1064), 1, + STATE(1025), 1, sym__declarator, - STATE(1190), 1, + STATE(1217), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39394] = 12, + [40130] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(117), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2716), 1, + ACTIONS(2731), 1, anon_sym_SEMI, - STATE(116), 1, + STATE(311), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1201), 1, + STATE(1185), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39432] = 7, + [40168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1983), 1, + sym_identifier, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2718), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [39459] = 8, + ACTIONS(2289), 1, + anon_sym_STAR, + STATE(1099), 1, + sym__declarator, + STATE(1433), 1, + sym_ms_based_modifier, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [40197] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1072), 1, + STATE(1106), 1, + sym__field_declarator, + STATE(1354), 1, + sym_ms_based_modifier, + STATE(1105), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [40226] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1081), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39488] = 11, + [40255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2720), 1, + ACTIONS(2735), 1, + anon_sym___attribute__, + ACTIONS(2738), 1, + anon_sym_LBRACK, + STATE(1036), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2733), 7, anon_sym_COMMA, - ACTIONS(2722), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(2724), 1, - anon_sym_LBRACK, - STATE(1106), 1, - sym_parameter_list, - STATE(1139), 1, - aux_sym_field_declaration_repeat1, - STATE(1447), 1, - sym_bitfield_clause, - STATE(1077), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39523] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [40278] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1085), 1, - sym__type_declarator, - STATE(1300), 1, + STATE(1110), 1, + sym__declarator, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [39552] = 8, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [40307] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1046), 1, + sym_parameter_list, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2740), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [40334] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1112), 1, + STATE(1083), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39581] = 8, + [40363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1097), 1, + STATE(1103), 1, sym__declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39610] = 8, + [40392] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1084), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39639] = 8, + [40421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1111), 1, + STATE(1095), 1, sym__declarator, - STATE(1379), 1, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1093), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39668] = 8, + [40450] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1091), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [39697] = 5, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1046), 1, + sym_parameter_list, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2742), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [40477] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1046), 1, + sym_parameter_list, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2744), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [40504] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2711), 1, + anon_sym_COLON, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2746), 1, + anon_sym_COMMA, + ACTIONS(2748), 1, + anon_sym_SEMI, + ACTIONS(2750), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_parameter_list, + STATE(1137), 1, + aux_sym_field_declaration_repeat1, + STATE(1355), 1, + sym_bitfield_clause, + STATE(1076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2754), 1, anon_sym___attribute__, - ACTIONS(2731), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - STATE(1040), 2, + STATE(1049), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2726), 7, + ACTIONS(2752), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78141,271 +79288,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39720] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_STAR, - STATE(1086), 1, - sym__type_declarator, - STATE(1300), 1, - sym_ms_based_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [39749] = 8, + [40562] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1071), 1, + STATE(1111), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39778] = 7, + [40591] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2711), 1, + anon_sym_COLON, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2746), 1, + anon_sym_COMMA, + ACTIONS(2750), 1, anon_sym_LBRACK, - STATE(1050), 1, + ACTIONS(2758), 1, + anon_sym_SEMI, + STATE(1115), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1142), 1, + aux_sym_field_declaration_repeat1, + STATE(1468), 1, + sym_bitfield_clause, + STATE(1076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2733), 5, + [40626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 1, + anon_sym___attribute__, + ACTIONS(2762), 1, + anon_sym_LBRACK, + STATE(1036), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2760), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39805] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(2282), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2286), 1, - anon_sym_STAR, - STATE(1109), 1, - sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - STATE(1107), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [39834] = 8, + [40649] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1079), 1, + STATE(1091), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39863] = 8, + [40678] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(1983), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2287), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2289), 1, anon_sym_STAR, - STATE(1089), 1, - sym__type_declarator, - STATE(1300), 1, + STATE(1098), 1, + sym__declarator, + STATE(1433), 1, sym_ms_based_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [39892] = 8, + STATE(1093), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [40707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1087), 1, + STATE(1085), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [39921] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2720), 1, - anon_sym_COMMA, - ACTIONS(2724), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_SEMI, - STATE(1106), 1, - sym_parameter_list, - STATE(1135), 1, - aux_sym_field_declaration_repeat1, - STATE(1397), 1, - sym_bitfield_clause, - STATE(1077), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [39956] = 11, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40736] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2720), 1, - anon_sym_COMMA, - ACTIONS(2724), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(1106), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1126), 1, - aux_sym_field_declaration_repeat1, - STATE(1347), 1, - sym_bitfield_clause, - STATE(1077), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39991] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2741), 1, - anon_sym___attribute__, - ACTIONS(2743), 1, - anon_sym_LBRACK, - STATE(1057), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2739), 7, + ACTIONS(2764), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40014] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(2274), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_STAR, - STATE(1101), 1, - sym__declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [40043] = 8, + [40763] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1093), 1, - sym__declarator, - STATE(1379), 1, + STATE(1102), 1, + sym__type_declarator, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1098), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [40072] = 5, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2768), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2750), 1, + ACTIONS(2771), 1, anon_sym_LBRACK, - STATE(1053), 2, + STATE(1055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2745), 7, + ACTIONS(2766), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78413,146 +79473,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [40095] = 8, + [40815] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1096), 1, + STATE(1087), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1413), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1119), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40124] = 8, + [40844] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2311), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2313), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2315), 1, anon_sym_STAR, - STATE(1075), 1, + STATE(1079), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40873] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2711), 1, + anon_sym_COLON, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2746), 1, + anon_sym_COMMA, + ACTIONS(2750), 1, + anon_sym_LBRACK, + ACTIONS(2773), 1, + anon_sym_SEMI, + STATE(1115), 1, + sym_parameter_list, + STATE(1147), 1, + aux_sym_field_declaration_repeat1, + STATE(1308), 1, + sym_bitfield_clause, + STATE(1076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40908] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2305), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_LPAREN2, + ACTIONS(2309), 1, + anon_sym_STAR, + STATE(1073), 1, sym__field_declarator, - STATE(1405), 1, + STATE(1354), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1105), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [40153] = 7, + [40937] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_STAR, + STATE(1077), 1, + sym__type_declarator, + STATE(1413), 1, + sym_ms_based_modifier, + STATE(1119), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40966] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1050), 1, + ACTIONS(2725), 1, + anon_sym_EQ, + ACTIONS(2731), 1, + anon_sym_SEMI, + STATE(1046), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1185), 1, + aux_sym_declaration_repeat1, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2752), 5, + [40998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + anon_sym_LBRACK, + ACTIONS(2775), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40180] = 5, + anon_sym_COLON, + [41016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym___attribute__, - ACTIONS(2756), 1, + ACTIONS(2781), 1, anon_sym_LBRACK, - STATE(1040), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(2754), 7, + ACTIONS(2779), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40203] = 7, + anon_sym_COLON, + [41034] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2785), 1, anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - STATE(1070), 2, + STATE(1055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2758), 5, + ACTIONS(2783), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [40230] = 7, + [41056] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1115), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2760), 4, + ACTIONS(2787), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [40256] = 3, + [41082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2762), 9, + STATE(1115), 1, + sym_parameter_list, + STATE(1076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2789), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + [41108] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2750), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_parameter_list, + STATE(1076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2791), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - [40274] = 3, + [41134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(2795), 1, anon_sym_LBRACK, - ACTIONS(2766), 9, + ACTIONS(2793), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78562,538 +79722,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [40292] = 10, + [41152] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2714), 1, + ACTIONS(2729), 1, anon_sym_SEMI, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1211), 1, + STATE(1207), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40324] = 10, + [41184] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2725), 1, anon_sym_EQ, - ACTIONS(2712), 1, + ACTIONS(2727), 1, anon_sym_SEMI, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1185), 1, + STATE(1183), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40356] = 10, + [41216] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - ACTIONS(2716), 1, - anon_sym_SEMI, - STATE(1050), 1, + STATE(1115), 1, sym_parameter_list, - STATE(1201), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_LBRACK, - ACTIONS(2770), 9, + ACTIONS(2797), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - [40406] = 7, + [41242] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2721), 1, + anon_sym_SEMI, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1106), 1, + ACTIONS(2725), 1, + anon_sym_EQ, + STATE(1046), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1204), 1, + aux_sym_declaration_repeat1, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2774), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [40432] = 7, + [41274] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1115), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2776), 4, + ACTIONS(2799), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [40458] = 10, + [41299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2706), 1, - anon_sym_SEMI, - ACTIONS(2708), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - STATE(1050), 1, - sym_parameter_list, - STATE(1207), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [40490] = 7, + ACTIONS(2801), 1, + sym_identifier, + ACTIONS(2805), 1, + sym_system_lib_string, + STATE(1346), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2803), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41320] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2778), 4, + ACTIONS(2807), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - [40516] = 5, + [41345] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2782), 1, + ACTIONS(2813), 1, anon_sym_LBRACK, - STATE(1053), 2, + STATE(1055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2780), 6, + ACTIONS(2811), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40538] = 9, + anon_sym_COLON, + [41366] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2809), 1, + anon_sym_LBRACK, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2817), 1, anon_sym_SEMI, - ACTIONS(2788), 1, - anon_sym_LBRACK, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1218), 1, + STATE(1175), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40567] = 9, + [41395] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2809), 1, + anon_sym_LBRACK, + STATE(1128), 1, + sym_parameter_list, + STATE(1104), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2819), 3, anon_sym_COMMA, - ACTIONS(2788), 1, + anon_sym_RPAREN, + anon_sym_SEMI, + [41420] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2809), 1, anon_sym_LBRACK, - ACTIONS(2790), 1, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2821), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, STATE(1194), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40596] = 5, + [41449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2796), 1, + ACTIONS(2825), 1, sym_system_lib_string, - STATE(1318), 2, + STATE(1397), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2794), 5, + ACTIONS(2803), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [40617] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - STATE(1050), 1, - sym_parameter_list, - ACTIONS(2798), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [40644] = 7, + [41470] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1106), 1, - sym_parameter_list, - STATE(1077), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2800), 3, + ACTIONS(2815), 1, anon_sym_COMMA, + ACTIONS(2827), 1, anon_sym_SEMI, - anon_sym_COLON, - [40669] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2788), 1, - anon_sym_LBRACK, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1094), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2802), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [40694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 1, - anon_sym_LBRACK, - STATE(1053), 2, + STATE(1205), 1, + aux_sym_type_definition_repeat2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2804), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - [40715] = 5, + [41499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(2829), 1, sym_identifier, - ACTIONS(2810), 1, + ACTIONS(2831), 1, sym_system_lib_string, - STATE(1432), 2, + STATE(1464), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2794), 5, + ACTIONS(2803), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [40736] = 9, + [41520] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - ACTIONS(2812), 1, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2833), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1179), 1, + STATE(1197), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40765] = 7, + [41549] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1125), 1, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2835), 1, + anon_sym_SEMI, + STATE(1128), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1190), 1, + aux_sym_type_definition_repeat2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2814), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [40790] = 9, + [41578] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - ACTIONS(2816), 1, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2837), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1213), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40819] = 7, + [41607] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2818), 3, + ACTIONS(2839), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [40844] = 5, + [41632] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, - sym_identifier, - ACTIONS(2822), 1, - sym_system_lib_string, - STATE(1372), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(2794), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [40865] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2809), 1, + anon_sym_LBRACK, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2841), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_parameter_list, + STATE(1214), 1, + aux_sym_type_definition_repeat2, + STATE(1104), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2843), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2845), 1, sym_system_lib_string, - STATE(1448), 2, + STATE(1423), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2794), 5, + ACTIONS(2803), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [40886] = 9, + [41682] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - ACTIONS(2828), 1, - anon_sym_SEMI, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1178), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2847), 3, anon_sym_COMMA, - ACTIONS(2788), 1, - anon_sym_LBRACK, - ACTIONS(2830), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1125), 1, - sym_parameter_list, - STATE(1172), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [40944] = 9, + [41707] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_SEMI, - STATE(1125), 1, + ACTIONS(2725), 1, + anon_sym_EQ, + STATE(1046), 1, sym_parameter_list, - STATE(1204), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, + ACTIONS(2849), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40973] = 7, + [41734] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1125), 1, - sym_parameter_list, - STATE(1094), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2834), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [40998] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(2788), 1, - anon_sym_LBRACK, - ACTIONS(2836), 1, + ACTIONS(2851), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1208), 1, + STATE(1224), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41027] = 3, + [41763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2855), 1, anon_sym_LBRACK, - ACTIONS(2838), 7, + ACTIONS(2853), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79101,30 +80169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41043] = 8, + [41779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2859), 1, + anon_sym_LBRACK, + ACTIONS(2857), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(117), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_LBRACK, - STATE(107), 1, - sym_compound_statement, - STATE(1050), 1, - sym_parameter_list, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41069] = 3, + anon_sym_EQ, + [41795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(2863), 1, anon_sym_LBRACK, - ACTIONS(2842), 7, + ACTIONS(2861), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79132,45 +80195,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41085] = 8, + [41811] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(357), 1, + STATE(370), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41111] = 5, + [41837] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2848), 1, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1053), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2846), 4, + STATE(1046), 1, + sym_parameter_list, + ACTIONS(2865), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [41131] = 3, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2850), 7, + ACTIONS(2867), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79178,47 +80243,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41147] = 7, + [41877] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(119), 1, + anon_sym_LBRACE, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(113), 1, + sym_compound_statement, + STATE(1046), 1, sym_parameter_list, - ACTIONS(2854), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1094), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41171] = 8, + [41903] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(372), 1, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(248), 1, + STATE(338), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41197] = 3, + [41929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(2856), 7, + ACTIONS(2871), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79226,29 +80292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41213] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - ACTIONS(2860), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41237] = 3, + [41945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2877), 1, anon_sym_LBRACK, - ACTIONS(2862), 7, + ACTIONS(2875), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79256,611 +80305,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41253] = 8, + [41961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2809), 1, + anon_sym_LBRACK, + STATE(1128), 1, + sym_parameter_list, + ACTIONS(2879), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1104), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41985] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(324), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(327), 1, + STATE(369), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1046), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1064), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41279] = 3, + [42011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2883), 1, anon_sym_LBRACK, - ACTIONS(2866), 7, + STATE(1055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2881), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41295] = 3, + [42031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - ACTIONS(2870), 6, + ACTIONS(2885), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41310] = 3, + [42046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2874), 6, - anon_sym_COMMA, + ACTIONS(2889), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [41325] = 3, + STATE(1115), 1, + sym_parameter_list, + STATE(1076), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(2893), 1, anon_sym_LBRACK, - ACTIONS(2878), 6, + ACTIONS(2891), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41340] = 3, + [42084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - ACTIONS(2882), 6, + ACTIONS(2895), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41355] = 3, + [42099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(2901), 1, anon_sym_LBRACK, - ACTIONS(2886), 6, + ACTIONS(2899), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41370] = 3, + [42114] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2723), 1, anon_sym_LBRACK, - ACTIONS(2890), 6, - anon_sym_COMMA, + ACTIONS(2903), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [41385] = 7, + STATE(1046), 1, + sym_parameter_list, + STATE(1064), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42137] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - ACTIONS(2894), 1, + ACTIONS(2905), 1, anon_sym_RPAREN, - STATE(1106), 1, + STATE(1128), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1104), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41408] = 3, + [42160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(2909), 1, anon_sym_LBRACK, - ACTIONS(2896), 6, + ACTIONS(2907), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41423] = 7, + [42175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(2900), 1, + ACTIONS(2911), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1050), 1, - sym_parameter_list, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41446] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, - anon_sym_LBRACK, - ACTIONS(2902), 1, - anon_sym_RPAREN, - STATE(1125), 1, - sym_parameter_list, - STATE(1094), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41469] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [42190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(2904), 6, + ACTIONS(2915), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41484] = 3, + [42205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2908), 5, + ACTIONS(2919), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41498] = 5, + anon_sym_COLON, + [42220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1139), 1, sym_parameter_list, - ACTIONS(2912), 3, + ACTIONS(2923), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [41516] = 3, + [42238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_LBRACK, - ACTIONS(2916), 5, + ACTIONS(2927), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41530] = 5, + [42252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 1, + ACTIONS(2933), 1, anon_sym_LBRACK, - ACTIONS(2923), 1, - anon_sym_EQ, - ACTIONS(2925), 1, - anon_sym_DOT, - STATE(1117), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [41548] = 5, + ACTIONS(2931), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1482), 1, + ACTIONS(2937), 1, + anon_sym_LBRACK, + ACTIONS(2935), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1439), 1, anon_sym_LBRACK, - ACTIONS(2928), 1, + ACTIONS(2939), 1, anon_sym_EQ, - ACTIONS(2930), 1, + ACTIONS(2941), 1, anon_sym_DOT, - STATE(1117), 3, + STATE(1131), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [41566] = 5, + [42298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1139), 1, sym_parameter_list, - ACTIONS(2932), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [41584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 1, - anon_sym_LBRACK, - ACTIONS(2934), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [41598] = 3, + ACTIONS(2943), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [42316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(2947), 1, anon_sym_LBRACK, - ACTIONS(2938), 5, + ACTIONS(2945), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41612] = 3, + [42330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(2951), 1, anon_sym_LBRACK, - ACTIONS(2942), 5, + ACTIONS(2949), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41626] = 3, + [42344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(2955), 1, anon_sym_LBRACK, - ACTIONS(2946), 5, + ACTIONS(2953), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41640] = 3, + [42358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2925), 1, anon_sym_LBRACK, - ACTIONS(2950), 5, + STATE(1139), 1, + sym_parameter_list, + ACTIONS(2957), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [41654] = 3, + anon_sym_COLON, + [42376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2925), 1, anon_sym_LBRACK, - ACTIONS(2954), 5, + STATE(1139), 1, + sym_parameter_list, + ACTIONS(2959), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [41668] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, anon_sym_COLON, - ACTIONS(2720), 1, - anon_sym_COMMA, - ACTIONS(2958), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_field_declaration_repeat1, - STATE(1340), 1, - sym_bitfield_clause, - [41687] = 2, + [42394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2719), 1, anon_sym_LPAREN2, + ACTIONS(2925), 1, anon_sym_LBRACK, + STATE(1139), 1, + sym_parameter_list, + ACTIONS(2961), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - [41698] = 5, + [42412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(2964), 1, - anon_sym_COLON_COLON, - STATE(1282), 1, - sym_argument_list, - ACTIONS(2962), 2, + ACTIONS(2965), 1, + anon_sym_LBRACK, + ACTIONS(2963), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41715] = 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1139), 1, sym_parameter_list, - ACTIONS(2966), 2, + ACTIONS(2967), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [41732] = 5, + [42444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2971), 1, anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2860), 2, + ACTIONS(2969), 5, anon_sym_COMMA, anon_sym_RPAREN, - [41749] = 2, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2973), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_EQ, + ACTIONS(2978), 1, + anon_sym_DOT, + STATE(1131), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [42476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 5, + ACTIONS(2981), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41760] = 2, + [42487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 5, + ACTIONS(2983), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41771] = 2, + [42498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 5, + ACTIONS(2985), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41782] = 2, + [42509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 5, + ACTIONS(2987), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41793] = 6, + [42520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + ACTIONS(2991), 1, + anon_sym_COLON_COLON, + STATE(1290), 1, + sym_argument_list, + ACTIONS(2989), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [42537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2711), 1, anon_sym_COLON, - ACTIONS(2720), 1, + ACTIONS(2746), 1, anon_sym_COMMA, - ACTIONS(2976), 1, + ACTIONS(2993), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1156), 1, aux_sym_field_declaration_repeat1, - STATE(1390), 1, + STATE(1295), 1, sym_bitfield_clause, - [41812] = 2, + [42556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_LPAREN2, + ACTIONS(2925), 1, + anon_sym_LBRACK, + STATE(1139), 1, + sym_parameter_list, + ACTIONS(2865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 5, + ACTIONS(2995), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41823] = 2, + [42584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 5, + ACTIONS(2997), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41834] = 2, + [42595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 5, + ACTIONS(2999), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41845] = 6, + [42606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2711), 1, anon_sym_COLON, - ACTIONS(2720), 1, + ACTIONS(2746), 1, anon_sym_COMMA, - ACTIONS(2984), 1, + ACTIONS(3001), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1156), 1, aux_sym_field_declaration_repeat1, - STATE(1467), 1, + STATE(1445), 1, sym_bitfield_clause, - [41864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, - anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2986), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [41881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2988), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [41892] = 2, + [42625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 5, + ACTIONS(3003), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41903] = 6, + [42636] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2328), 1, + ACTIONS(2337), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(3005), 1, sym_identifier, - STATE(891), 1, + STATE(890), 1, sym_field_declaration_list, - STATE(1223), 1, + STATE(1228), 1, sym_ms_declspec_modifier, - [41922] = 2, + [42655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 5, + ACTIONS(3007), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41933] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, - anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2996), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [41950] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, - anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2998), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [41967] = 6, + [42666] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2328), 1, + ACTIONS(2337), 1, anon_sym_LBRACE, - ACTIONS(3000), 1, + ACTIONS(3009), 1, sym_identifier, - STATE(892), 1, + STATE(898), 1, sym_field_declaration_list, - STATE(1168), 1, + STATE(1229), 1, sym_ms_declspec_modifier, - [41986] = 2, + [42685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_COLON, + ACTIONS(2746), 1, + anon_sym_COMMA, + ACTIONS(3011), 1, + anon_sym_SEMI, + STATE(1156), 1, + aux_sym_field_declaration_repeat1, + STATE(1363), 1, + sym_bitfield_clause, + [42704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 5, + ACTIONS(3013), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41997] = 5, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3004), 1, - anon_sym_DQUOTE, - ACTIONS(3006), 1, - aux_sym_string_literal_token1, - ACTIONS(3008), 1, - sym_escape_sequence, - STATE(1156), 1, - aux_sym_string_literal_repeat1, - [42013] = 5, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3006), 1, - aux_sym_string_literal_token1, - ACTIONS(3008), 1, - sym_escape_sequence, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - STATE(1156), 1, - aux_sym_string_literal_repeat1, - [42029] = 5, + [42715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(3015), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2914), 1, anon_sym_LBRACK, - ACTIONS(3012), 1, - anon_sym_RPAREN, - STATE(1148), 1, - sym_parameter_list, - [42045] = 4, + anon_sym_COLON, + [42726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3017), 5, anon_sym_COMMA, - STATE(1152), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3017), 2, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [42059] = 5, - ACTIONS(2484), 1, + [42737] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3019), 1, anon_sym_LF, @@ -79868,10 +80897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3023), 1, sym_preproc_arg, - STATE(1274), 1, + STATE(1232), 1, sym_preproc_params, - [42075] = 5, - ACTIONS(2484), 1, + [42753] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN, @@ -79879,10 +80908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LF, ACTIONS(3027), 1, sym_preproc_arg, - STATE(1244), 1, + STATE(1253), 1, sym_preproc_params, - [42091] = 5, - ACTIONS(2484), 1, + [42769] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3029), 1, anon_sym_DQUOTE, @@ -79890,3192 +80919,3261 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(3033), 1, sym_escape_sequence, - STATE(1149), 1, + STATE(1154), 1, aux_sym_string_literal_repeat1, - [42107] = 5, - ACTIONS(2484), 1, + [42785] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3035), 1, anon_sym_DQUOTE, ACTIONS(3037), 1, aux_sym_string_literal_token1, - ACTIONS(3040), 1, + ACTIONS(3039), 1, sym_escape_sequence, - STATE(1156), 1, + STATE(1161), 1, aux_sym_string_literal_repeat1, - [42123] = 5, - ACTIONS(2484), 1, + [42801] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN, - ACTIONS(3043), 1, + ACTIONS(3041), 1, anon_sym_LF, - ACTIONS(3045), 1, + ACTIONS(3043), 1, sym_preproc_arg, - STATE(1252), 1, + STATE(1250), 1, sym_preproc_params, - [42139] = 5, - ACTIONS(2484), 1, + [42817] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3047), 1, - anon_sym_LF, - ACTIONS(3049), 1, - sym_preproc_arg, - STATE(1272), 1, - sym_preproc_params, - [42155] = 5, - ACTIONS(2484), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(3048), 2, + anon_sym_SEMI, + anon_sym_COLON, + [42831] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN, - ACTIONS(3051), 1, + ACTIONS(3050), 1, anon_sym_LF, - ACTIONS(3053), 1, + ACTIONS(3052), 1, sym_preproc_arg, - STATE(1268), 1, + STATE(1252), 1, sym_preproc_params, - [42171] = 5, - ACTIONS(2484), 1, + [42847] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3037), 1, aux_sym_string_literal_token1, - ACTIONS(3008), 1, + ACTIONS(3039), 1, sym_escape_sequence, - ACTIONS(3055), 1, + ACTIONS(3054), 1, anon_sym_DQUOTE, - STATE(1156), 1, + STATE(1161), 1, aux_sym_string_literal_repeat1, - [42187] = 4, + [42863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(2719), 1, anon_sym_LPAREN2, - STATE(1288), 1, - sym_argument_list, - ACTIONS(3057), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [42201] = 5, - ACTIONS(3), 1, + ACTIONS(2925), 1, + anon_sym_LBRACK, + ACTIONS(3056), 1, + anon_sym_RPAREN, + STATE(1139), 1, + sym_parameter_list, + [42879] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3059), 1, - sym_identifier, - ACTIONS(3061), 1, - anon_sym_COMMA, - ACTIONS(3063), 1, - anon_sym_RBRACE, - STATE(1198), 1, - sym_enumerator, - [42217] = 5, - ACTIONS(2484), 1, + ACTIONS(3058), 1, + anon_sym_DQUOTE, + ACTIONS(3060), 1, + aux_sym_string_literal_token1, + ACTIONS(3062), 1, + sym_escape_sequence, + STATE(1158), 1, + aux_sym_string_literal_repeat1, + [42895] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3064), 1, anon_sym_DQUOTE, - ACTIONS(3067), 1, + ACTIONS(3066), 1, aux_sym_string_literal_token1, ACTIONS(3069), 1, sym_escape_sequence, - STATE(1150), 1, + STATE(1161), 1, aux_sym_string_literal_repeat1, - [42233] = 5, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3071), 1, - anon_sym_LF, - ACTIONS(3073), 1, - sym_preproc_arg, - STATE(1246), 1, - sym_preproc_params, - [42249] = 5, - ACTIONS(2484), 1, + [42911] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3072), 1, anon_sym_DQUOTE, - ACTIONS(3077), 1, + ACTIONS(3074), 1, aux_sym_string_literal_token1, - ACTIONS(3079), 1, + ACTIONS(3076), 1, sym_escape_sequence, - STATE(1160), 1, + STATE(1167), 1, aux_sym_string_literal_repeat1, - [42265] = 5, - ACTIONS(2484), 1, + [42927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LPAREN2, + STATE(1257), 1, + sym_argument_list, + ACTIONS(3078), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [42941] = 5, + ACTIONS(2495), 1, sym_comment, ACTIONS(3021), 1, anon_sym_LPAREN, - ACTIONS(3081), 1, + ACTIONS(3080), 1, anon_sym_LF, - ACTIONS(3083), 1, + ACTIONS(3082), 1, sym_preproc_arg, - STATE(1271), 1, + STATE(1284), 1, sym_preproc_params, - [42281] = 4, + [42957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(3084), 1, + sym_identifier, + ACTIONS(3086), 1, anon_sym_COMMA, - ACTIONS(2126), 1, + ACTIONS(3088), 1, anon_sym_RBRACE, - STATE(1191), 1, - aux_sym_initializer_list_repeat1, - [42294] = 4, - ACTIONS(3), 1, + STATE(1182), 1, + sym_enumerator, + [42973] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(3085), 1, - sym_identifier, - STATE(901), 1, - sym_field_declaration_list, - [42307] = 4, - ACTIONS(3), 1, + ACTIONS(3021), 1, + anon_sym_LPAREN, + ACTIONS(3090), 1, + anon_sym_LF, + ACTIONS(3092), 1, + sym_preproc_arg, + STATE(1278), 1, + sym_preproc_params, + [42989] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_COMMA, - ACTIONS(3089), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_preproc_params_repeat1, - [42320] = 4, - ACTIONS(2482), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, + ACTIONS(3037), 1, + aux_sym_string_literal_token1, + ACTIONS(3039), 1, + sym_escape_sequence, + ACTIONS(3094), 1, + anon_sym_DQUOTE, + STATE(1161), 1, + aux_sym_string_literal_repeat1, + [43005] = 5, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3021), 1, + anon_sym_LPAREN, + ACTIONS(3096), 1, anon_sym_LF, - STATE(968), 1, - sym_preproc_argument_list, - [42333] = 4, + ACTIONS(3098), 1, + sym_preproc_arg, + STATE(1281), 1, + sym_preproc_params, + [43021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - sym_identifier, - ACTIONS(3093), 1, - anon_sym_RBRACE, - STATE(1262), 1, - sym_enumerator, - [42346] = 4, + ACTIONS(3100), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [43030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(1494), 1, + anon_sym_RBRACE, + ACTIONS(3102), 1, anon_sym_COMMA, - ACTIONS(3095), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42359] = 4, + STATE(1192), 1, + aux_sym_initializer_list_repeat1, + [43043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_RPAREN, - ACTIONS(3097), 1, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1173), 1, - aux_sym_preproc_argument_list_repeat1, - [42372] = 4, + ACTIONS(3107), 1, + anon_sym_RPAREN, + STATE(1171), 1, + aux_sym_generic_expression_repeat1, + [43056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_RPAREN, - ACTIONS(3100), 1, + ACTIONS(2128), 1, anon_sym_COMMA, - STATE(1174), 1, + ACTIONS(3109), 1, + anon_sym_RPAREN, + STATE(1226), 1, aux_sym_argument_list_repeat1, - [42385] = 4, + [43069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(2463), 1, anon_sym_COMMA, - ACTIONS(3103), 1, + ACTIONS(3111), 1, anon_sym_RPAREN, - STATE(1173), 1, + STATE(1221), 1, aux_sym_preproc_argument_list_repeat1, - [42398] = 4, + [43082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, + ACTIONS(3113), 1, anon_sym_COMMA, - ACTIONS(3108), 1, + ACTIONS(3115), 1, anon_sym_RPAREN, - STATE(1176), 1, + STATE(1222), 1, aux_sym_preproc_params_repeat1, - [42411] = 4, - ACTIONS(2482), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_LF, - STATE(968), 1, - sym_preproc_argument_list, - [42424] = 4, + [43095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3112), 1, + ACTIONS(3117), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - [42437] = 4, + [43108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2347), 1, + anon_sym_LBRACE, + ACTIONS(3119), 1, + sym_identifier, + STATE(900), 1, + sym_enumerator_list, + [43121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3114), 1, + ACTIONS(3121), 1, anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42450] = 4, + STATE(1198), 1, + aux_sym_declaration_repeat1, + [43134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(3123), 1, anon_sym_COMMA, - ACTIONS(3119), 1, + ACTIONS(3125), 1, anon_sym_RPAREN, STATE(1180), 1, aux_sym_parameter_list_repeat1, - [42463] = 3, + [43147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(3129), 1, + anon_sym_RBRACK_RBRACK, + STATE(1219), 1, + aux_sym_attribute_declaration_repeat1, + [43160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3131), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, anon_sym_RPAREN, - ACTIONS(3121), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [42474] = 4, + STATE(1180), 1, + aux_sym_parameter_list_repeat1, + [43173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3138), 1, + anon_sym_EQ, + ACTIONS(3136), 2, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_RBRACK_RBRACK, - STATE(1197), 1, - aux_sym_attribute_declaration_repeat1, - [42487] = 4, + anon_sym_RBRACE, + [43184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3140), 1, anon_sym_COMMA, - ACTIONS(3129), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42500] = 4, + ACTIONS(3142), 1, + anon_sym_RBRACE, + STATE(1223), 1, + aux_sym_enumerator_list_repeat1, + [43197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3131), 1, + ACTIONS(3144), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42513] = 4, + [43210] = 4, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3146), 1, + anon_sym_LF, + STATE(988), 1, + sym_preproc_argument_list, + [43223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3133), 1, + ACTIONS(3148), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42526] = 4, + [43236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(3135), 1, - anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_preproc_params_repeat1, - [42539] = 4, + ACTIONS(3150), 1, + anon_sym_RBRACK_RBRACK, + STATE(1203), 1, + aux_sym_attribute_declaration_repeat1, + [43249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2128), 1, anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RBRACK_RBRACK, - STATE(1188), 1, - aux_sym_attribute_declaration_repeat1, - [42552] = 4, + ACTIONS(3152), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_argument_list_repeat1, + [43262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3139), 1, - anon_sym_RBRACK_RBRACK, - STATE(1213), 1, - aux_sym_attribute_declaration_repeat1, - [42565] = 2, + ACTIONS(3154), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_declaration_repeat1, + [43275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [42574] = 4, + ACTIONS(2463), 1, + anon_sym_COMMA, + ACTIONS(3156), 1, + anon_sym_RPAREN, + STATE(1221), 1, + aux_sym_preproc_argument_list_repeat1, + [43288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3143), 1, + ACTIONS(3158), 1, anon_sym_SEMI, - STATE(1202), 1, - aux_sym_declaration_repeat1, - [42587] = 4, + STATE(1199), 1, + aux_sym_type_definition_repeat2, + [43301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym_preproc_params_repeat1, + [43314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(2237), 1, anon_sym_RBRACE, - ACTIONS(3145), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - STATE(1224), 1, + STATE(1192), 1, aux_sym_initializer_list_repeat1, - [42600] = 4, + [43327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_SEMI, - STATE(1184), 1, - aux_sym_declaration_repeat1, - [42613] = 4, + ACTIONS(2122), 1, + anon_sym_RBRACE, + STATE(1170), 1, + aux_sym_initializer_list_repeat1, + [43340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3152), 1, + ACTIONS(3165), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - [42626] = 4, + [43353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3167), 1, anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42639] = 4, + STATE(1208), 1, + aux_sym_declaration_repeat1, + [43366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(3159), 1, - anon_sym_RPAREN, - STATE(1195), 1, - aux_sym_generic_expression_repeat1, - [42652] = 3, + ACTIONS(3169), 1, + anon_sym_RBRACK_RBRACK, + STATE(1219), 1, + aux_sym_attribute_declaration_repeat1, + [43379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_EQ, - ACTIONS(3161), 2, + ACTIONS(2815), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [42663] = 4, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_type_definition_repeat2, + [43392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3173), 1, anon_sym_COMMA, - ACTIONS(3165), 1, - anon_sym_RBRACK_RBRACK, - STATE(1213), 1, - aux_sym_attribute_declaration_repeat1, - [42676] = 4, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(1198), 1, + aux_sym_declaration_repeat1, + [43405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - ACTIONS(3169), 1, - anon_sym_RBRACE, - STATE(1200), 1, - aux_sym_enumerator_list_repeat1, - [42689] = 4, + ACTIONS(3181), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_type_definition_repeat2, + [43418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(2124), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3183), 1, anon_sym_RPAREN, - STATE(1195), 1, + STATE(1171), 1, aux_sym_generic_expression_repeat1, - [42702] = 4, + [43431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_RBRACE, - ACTIONS(3173), 1, + ACTIONS(3123), 1, anon_sym_COMMA, - STATE(1217), 1, - aux_sym_enumerator_list_repeat1, - [42715] = 4, + ACTIONS(3185), 1, + anon_sym_RPAREN, + STATE(1178), 1, + aux_sym_parameter_list_repeat1, + [43444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3175), 1, + ACTIONS(3187), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42728] = 4, + [43457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(3177), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42741] = 4, + ACTIONS(3189), 1, + anon_sym_RBRACK_RBRACK, + STATE(1219), 1, + aux_sym_attribute_declaration_repeat1, + [43470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3179), 1, + ACTIONS(3191), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42754] = 4, + [43483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3181), 1, + ACTIONS(3193), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - [42767] = 4, + [43496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + sym_identifier, + ACTIONS(3195), 1, + anon_sym_RBRACE, + STATE(1256), 1, + sym_enumerator, + [43509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3183), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - STATE(1206), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42780] = 4, + [43522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3185), 1, + ACTIONS(3199), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - [42793] = 4, + [43535] = 4, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_LF, + STATE(988), 1, + sym_preproc_argument_list, + [43548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3203), 1, anon_sym_COMMA, - ACTIONS(3187), 1, + ACTIONS(3206), 1, + anon_sym_RBRACE, + STATE(1210), 1, + aux_sym_enumerator_list_repeat1, + [43561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(3208), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1202), 1, aux_sym_declaration_repeat1, - [42806] = 4, + [43574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3212), 1, + anon_sym_RPAREN, + ACTIONS(3210), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [43585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3189), 1, + ACTIONS(3214), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - [42819] = 4, + [43598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3191), 1, - anon_sym_RPAREN, - STATE(1174), 1, - aux_sym_argument_list_repeat1, - [42832] = 4, - ACTIONS(2482), 1, + ACTIONS(3216), 1, + anon_sym_SEMI, + STATE(1199), 1, + aux_sym_type_definition_repeat2, + [43611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1188), 1, + aux_sym_declaration_repeat1, + [43624] = 4, + ACTIONS(2493), 1, anon_sym_LPAREN2, - ACTIONS(2484), 1, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3220), 1, anon_sym_LF, - STATE(968), 1, + STATE(988), 1, sym_preproc_argument_list, - [42845] = 4, + [43637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3195), 1, + ACTIONS(3222), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1177), 1, aux_sym_declaration_repeat1, - [42858] = 4, - ACTIONS(3), 1, + [43650] = 4, + ACTIONS(2493), 1, + anon_sym_LPAREN2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(3197), 1, - anon_sym_RBRACK_RBRACK, - STATE(1213), 1, - aux_sym_attribute_declaration_repeat1, - [42871] = 4, + ACTIONS(3224), 1, + anon_sym_LF, + STATE(988), 1, + sym_preproc_argument_list, + [43663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3226), 1, anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3229), 1, anon_sym_RBRACK_RBRACK, - STATE(1213), 1, + STATE(1219), 1, aux_sym_attribute_declaration_repeat1, - [42884] = 4, + [43676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3084), 1, sym_identifier, - ACTIONS(3204), 1, + ACTIONS(3231), 1, anon_sym_RBRACE, - STATE(1262), 1, + STATE(1256), 1, sym_enumerator, - [42897] = 4, + [43689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, - anon_sym_COMMA, - ACTIONS(3206), 1, + ACTIONS(2597), 1, anon_sym_RPAREN, - STATE(1173), 1, + ACTIONS(3233), 1, + anon_sym_COMMA, + STATE(1221), 1, aux_sym_preproc_argument_list_repeat1, - [42910] = 4, + [43702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3236), 1, anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_RBRACK_RBRACK, - STATE(1212), 1, - aux_sym_attribute_declaration_repeat1, - [42923] = 4, + ACTIONS(3239), 1, + anon_sym_RPAREN, + STATE(1222), 1, + aux_sym_preproc_params_repeat1, + [43715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, + ACTIONS(3231), 1, anon_sym_RBRACE, - STATE(1217), 1, + ACTIONS(3241), 1, + anon_sym_COMMA, + STATE(1210), 1, aux_sym_enumerator_list_repeat1, - [42936] = 4, + [43728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2815), 1, anon_sym_COMMA, - ACTIONS(3215), 1, + ACTIONS(3243), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1199), 1, aux_sym_type_definition_repeat2, - [42949] = 4, + [43741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - ACTIONS(3217), 1, - sym_identifier, - STATE(893), 1, - sym_enumerator_list, - [42962] = 4, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(3245), 1, + anon_sym_RBRACK_RBRACK, + STATE(1196), 1, + aux_sym_attribute_declaration_repeat1, + [43754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 1, - anon_sym_COMMA, - ACTIONS(3219), 1, + ACTIONS(2241), 1, anon_sym_RPAREN, - STATE(1174), 1, + ACTIONS(3247), 1, + anon_sym_COMMA, + STATE(1226), 1, aux_sym_argument_list_repeat1, - [42975] = 4, - ACTIONS(2482), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_LF, - STATE(968), 1, - sym_preproc_argument_list, - [42988] = 4, + [43767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [43001] = 4, + ACTIONS(3250), 1, + anon_sym_RBRACK_RBRACK, + STATE(1179), 1, + aux_sym_attribute_declaration_repeat1, + [43780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2337), 1, anon_sym_LBRACE, - ACTIONS(3228), 1, + ACTIONS(3252), 1, sym_identifier, - STATE(898), 1, + STATE(904), 1, sym_field_declaration_list, - [43014] = 4, + [43793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, - anon_sym_RBRACE, - ACTIONS(3230), 1, - anon_sym_COMMA, - STATE(1224), 1, - aux_sym_initializer_list_repeat1, - [43027] = 2, + ACTIONS(2337), 1, + anon_sym_LBRACE, + ACTIONS(3254), 1, + sym_identifier, + STATE(903), 1, + sym_field_declaration_list, + [43806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 3, + ACTIONS(3256), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [43036] = 4, - ACTIONS(3), 1, + [43815] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3237), 1, - anon_sym_RPAREN, - STATE(1228), 1, - aux_sym_parameter_list_repeat1, - [43049] = 4, + ACTIONS(3258), 1, + anon_sym_LF, + ACTIONS(3260), 1, + sym_preproc_arg, + [43825] = 3, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3262), 1, + anon_sym_LF, + ACTIONS(3264), 1, + sym_preproc_arg, + [43835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(3239), 1, - anon_sym_SEMI, - STATE(1203), 1, - aux_sym_declaration_repeat1, - [43062] = 4, + ACTIONS(329), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + [43845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(2147), 2, anon_sym_COMMA, - ACTIONS(3241), 1, - anon_sym_RPAREN, - STATE(1180), 1, - aux_sym_parameter_list_repeat1, - [43075] = 3, + anon_sym_SEMI, + [43853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - STATE(268), 1, - sym_parenthesized_expression, - [43085] = 3, + STATE(1411), 1, + sym_argument_list, + [43863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3266), 1, sym_identifier, - STATE(1262), 1, - sym_enumerator, - [43095] = 3, + ACTIONS(3268), 1, + anon_sym_LPAREN2, + [43873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(232), 1, sym_compound_statement, - [43105] = 2, + [43883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 2, + ACTIONS(3134), 2, anon_sym_COMMA, anon_sym_RPAREN, - [43113] = 2, + [43891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43121] = 2, + ACTIONS(3270), 1, + anon_sym_LPAREN2, + STATE(1296), 1, + sym_parenthesized_expression, + [43901] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3272), 2, + anon_sym_LF, + sym_preproc_arg, + [43909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(3239), 2, anon_sym_COMMA, - anon_sym_SEMI, - [43129] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3247), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [43137] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [43917] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3249), 1, - anon_sym_LPAREN2, - STATE(1243), 1, - sym_parenthesized_expression, - [43147] = 3, + ACTIONS(3274), 1, + anon_sym_LF, + ACTIONS(3276), 1, + sym_preproc_arg, + [43927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(3084), 1, sym_identifier, - STATE(1216), 1, - sym_attribute, - [43157] = 2, + STATE(1256), 1, + sym_enumerator, + [43937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43165] = 3, + ACTIONS(3278), 1, + anon_sym_LPAREN2, + STATE(205), 1, + sym_parenthesized_expression, + [43947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(1411), 1, + STATE(135), 1, sym_parenthesized_expression, - [43175] = 3, - ACTIONS(2484), 1, + [43957] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, - anon_sym_LF, - ACTIONS(3255), 1, - sym_preproc_arg, - [43185] = 3, + ACTIONS(3229), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [43965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(1801), 1, anon_sym_LPAREN2, - STATE(266), 1, - sym_parenthesized_expression, - [43195] = 3, + STATE(1367), 1, + sym_argument_list, + [43975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(1231), 1, + STATE(1249), 1, sym_parenthesized_expression, - [43205] = 3, + [43985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(592), 1, anon_sym_LBRACE, - STATE(143), 1, + STATE(170), 1, sym_compound_statement, - [43215] = 3, - ACTIONS(2484), 1, + [43995] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3280), 1, anon_sym_LF, - ACTIONS(3259), 1, + ACTIONS(3282), 1, sym_preproc_arg, - [43225] = 3, - ACTIONS(2484), 1, + [44005] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3284), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [44013] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3286), 1, anon_sym_LF, - ACTIONS(3263), 1, + ACTIONS(3288), 1, sym_preproc_arg, - [43235] = 3, - ACTIONS(2484), 1, + [44023] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3290), 1, anon_sym_LF, - ACTIONS(3267), 1, + ACTIONS(3292), 1, sym_preproc_arg, - [43245] = 3, + [44033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3294), 1, + sym_identifier, + ACTIONS(3296), 1, + anon_sym_LPAREN2, + [44043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(283), 1, + STATE(1358), 1, sym_parenthesized_expression, - [43255] = 2, - ACTIONS(2484), 1, + [44053] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [43263] = 3, + ACTIONS(3206), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3298), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [44069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(291), 1, + STATE(284), 1, sym_parenthesized_expression, - [43273] = 3, + [44079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(238), 1, + STATE(1485), 1, sym_parenthesized_expression, - [43283] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3271), 1, - anon_sym_LF, - ACTIONS(3273), 1, - sym_preproc_arg, - [43293] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3275), 1, - anon_sym_LF, - ACTIONS(3277), 1, - sym_preproc_arg, - [43303] = 3, + [44089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(321), 1, + STATE(282), 1, sym_parenthesized_expression, - [43313] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3279), 1, - anon_sym_LF, - ACTIONS(3281), 1, - sym_preproc_arg, - [43323] = 2, + [44099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [43331] = 3, + ACTIONS(3300), 1, + sym_identifier, + STATE(1225), 1, + sym_attribute, + [44109] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3302), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [44117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(307), 1, + STATE(176), 1, sym_parenthesized_expression, - [43341] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3283), 1, - anon_sym_LF, - ACTIONS(3285), 1, - sym_preproc_arg, - [43351] = 3, + [44127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, - sym_identifier, - ACTIONS(3289), 1, - anon_sym_LPAREN2, - [43361] = 3, + ACTIONS(3304), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - sym_identifier, - ACTIONS(3293), 1, - anon_sym_LPAREN2, - [43371] = 3, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [44143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(1264), 1, + STATE(1237), 1, sym_parenthesized_expression, - [43381] = 3, - ACTIONS(2484), 1, + [44153] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3306), 2, anon_sym_LF, - ACTIONS(3297), 1, sym_preproc_arg, - [43391] = 2, + [44161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 2, + ACTIONS(2109), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 2, anon_sym_COMMA, anon_sym_RBRACE, - [43399] = 3, + [44177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(1292), 1, - sym_argument_list, - [43409] = 3, + STATE(173), 1, + sym_parenthesized_expression, + [44187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(372), 1, + ACTIONS(119), 1, anon_sym_LBRACE, - STATE(150), 1, + STATE(71), 1, sym_compound_statement, - [43419] = 3, + [44197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(1351), 1, + STATE(1352), 1, sym_parenthesized_expression, - [43429] = 2, - ACTIONS(2484), 1, + [44207] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [43437] = 2, + ACTIONS(3300), 1, + sym_identifier, + STATE(1246), 1, + sym_attribute, + [44217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43445] = 3, - ACTIONS(2484), 1, + ACTIONS(3300), 1, + sym_identifier, + STATE(1186), 1, + sym_attribute, + [44227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_LPAREN2, + STATE(229), 1, + sym_parenthesized_expression, + [44237] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3308), 1, anon_sym_LF, - ACTIONS(3303), 1, + ACTIONS(3310), 1, sym_preproc_arg, - [43455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3202), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43463] = 2, - ACTIONS(3), 1, + [44247] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43471] = 3, - ACTIONS(2484), 1, + ACTIONS(3312), 1, + anon_sym_LF, + ACTIONS(3314), 1, + sym_preproc_arg, + [44257] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3316), 1, anon_sym_LF, - ACTIONS(3307), 1, + ACTIONS(3318), 1, sym_preproc_arg, - [43481] = 3, - ACTIONS(2484), 1, + [44267] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3320), 1, anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3322), 1, sym_preproc_arg, - [43491] = 3, + [44277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(1306), 1, + STATE(1271), 1, sym_parenthesized_expression, - [43501] = 3, - ACTIONS(2484), 1, + [44287] = 3, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_LF, + ACTIONS(3326), 1, + sym_preproc_arg, + [44297] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3328), 1, anon_sym_LF, - ACTIONS(3315), 1, + ACTIONS(3330), 1, sym_preproc_arg, - [43511] = 3, + [44307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(3300), 1, sym_identifier, - STATE(1187), 1, + STATE(1227), 1, sym_attribute, - [43521] = 2, - ACTIONS(2484), 1, + [44317] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3317), 2, + ACTIONS(3332), 1, anon_sym_LF, + ACTIONS(3334), 1, sym_preproc_arg, - [43529] = 3, + [44327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3278), 1, anon_sym_LPAREN2, - STATE(1401), 1, + STATE(234), 1, sym_parenthesized_expression, - [43539] = 2, - ACTIONS(3), 1, + [44337] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3319), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [43547] = 3, + ACTIONS(3336), 2, + anon_sym_LF, + sym_preproc_arg, + [44345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(3338), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1269), 1, - sym_attribute, - [43557] = 3, + [44353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_compound_statement, - [43567] = 3, + ACTIONS(2849), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [44361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3270), 1, anon_sym_LPAREN2, - STATE(1280), 1, + STATE(1233), 1, sym_parenthesized_expression, - [43577] = 2, + [44371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 2, + ACTIONS(3340), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [43585] = 2, - ACTIONS(3), 1, + [44379] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3119), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43593] = 2, - ACTIONS(2484), 1, + ACTIONS(3342), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [44387] = 3, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3323), 2, + ACTIONS(3344), 1, anon_sym_LF, + ACTIONS(3346), 1, sym_preproc_arg, - [43601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 1, - sym_identifier, - STATE(1182), 1, - sym_attribute, - [43611] = 3, + [44397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - STATE(1349), 1, - sym_argument_list, - [43621] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3325), 2, - anon_sym_LF, - sym_preproc_arg, - [43629] = 2, + ACTIONS(2205), 1, + anon_sym_RPAREN, + [44404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43637] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_LF, - ACTIONS(3331), 1, - sym_preproc_arg, - [43647] = 3, + ACTIONS(2225), 1, + anon_sym_SEMI, + [44411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - STATE(240), 1, - sym_parenthesized_expression, - [43657] = 2, + ACTIONS(3348), 1, + anon_sym_SEMI, + [44418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3350), 1, anon_sym_SEMI, - [43664] = 2, + [44425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(2229), 1, anon_sym_RPAREN, - [43671] = 2, + [44432] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3352), 1, + anon_sym_LF, + [44439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3354), 1, aux_sym_preproc_if_token2, - [43678] = 2, - ACTIONS(2484), 1, + [44446] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_LF, - [43685] = 2, + ACTIONS(2227), 1, + anon_sym_RPAREN, + [44453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, - aux_sym_preproc_if_token2, - [43692] = 2, + ACTIONS(3356), 1, + sym_identifier, + [44460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, + ACTIONS(2243), 1, anon_sym_RPAREN, - [43699] = 2, + [44467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, - aux_sym_preproc_if_token2, - [43706] = 2, + ACTIONS(2122), 1, + anon_sym_RBRACE, + [44474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3358), 1, aux_sym_preproc_if_token2, - [43713] = 2, + [44481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(2219), 1, anon_sym_RPAREN, - [43720] = 2, + [44488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_STAR, - [43727] = 2, + ACTIONS(3360), 1, + aux_sym_preproc_if_token2, + [44495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - [43734] = 2, - ACTIONS(2484), 1, + [44502] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LF, - [43741] = 2, + ACTIONS(3362), 1, + anon_sym_SEMI, + [44509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2247), 1, anon_sym_RPAREN, - [43748] = 2, + [44516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, - anon_sym_RBRACE, - [43755] = 2, + ACTIONS(2245), 1, + anon_sym_RPAREN, + [44523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2175), 1, anon_sym_RPAREN, - [43762] = 2, + [44530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(2215), 1, anon_sym_SEMI, - [43769] = 2, + [44537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2177), 1, anon_sym_RPAREN, - [43776] = 2, + [44544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, - sym_identifier, - [43783] = 2, + ACTIONS(3364), 1, + anon_sym_SEMI, + [44551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3366), 1, aux_sym_preproc_if_token2, - [43790] = 2, + [44558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2209), 1, anon_sym_RPAREN, - [43797] = 2, + [44565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_SEMI, - [43804] = 2, + ACTIONS(3368), 1, + aux_sym_preproc_if_token2, + [44572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_SEMI, - [43811] = 2, - ACTIONS(2484), 1, + ACTIONS(3370), 1, + aux_sym_preproc_if_token2, + [44579] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3372), 1, anon_sym_LF, - [43818] = 2, - ACTIONS(2484), 1, + [44586] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3374), 1, anon_sym_LF, - [43825] = 2, - ACTIONS(2484), 1, + [44593] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3376), 1, anon_sym_LF, - [43832] = 2, - ACTIONS(2484), 1, + [44600] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3378), 1, anon_sym_LF, - [43839] = 2, + [44607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - sym_identifier, - [43846] = 2, - ACTIONS(2484), 1, + ACTIONS(2257), 1, + anon_sym_RPAREN, + [44614] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_LF, - [43853] = 2, - ACTIONS(2484), 1, + ACTIONS(3380), 1, + anon_sym_COLON, + [44621] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3382), 1, anon_sym_LF, - [43860] = 2, - ACTIONS(2484), 1, + [44628] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3384), 1, anon_sym_LF, - [43867] = 2, + [44635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_SEMI, - [43874] = 2, - ACTIONS(2484), 1, + ACTIONS(3386), 1, + aux_sym_preproc_if_token2, + [44642] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3388), 1, anon_sym_LF, - [43881] = 2, + [44649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, - anon_sym_SEMI, - [43888] = 2, + ACTIONS(3390), 1, + aux_sym_preproc_if_token2, + [44656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(2165), 1, anon_sym_SEMI, - [43895] = 2, - ACTIONS(2484), 1, + [44663] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3392), 1, anon_sym_LF, - [43902] = 2, - ACTIONS(2484), 1, + [44670] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3394), 1, anon_sym_LF, - [43909] = 2, + [44677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, - anon_sym_COLON, - [43916] = 2, - ACTIONS(2484), 1, + ACTIONS(3396), 1, + anon_sym_SEMI, + [44684] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(3398), 1, anon_sym_LF, - [43923] = 2, + [44691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_RPAREN, - [43930] = 2, + ACTIONS(3400), 1, + anon_sym_SEMI, + [44698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3402), 1, sym_identifier, - [43937] = 2, + [44705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, + ACTIONS(3404), 1, sym_identifier, - [43944] = 2, + [44712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - aux_sym_preproc_if_token2, - [43951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_RPAREN, - [43958] = 2, + ACTIONS(3406), 1, + anon_sym_COLON, + [44719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(3408), 1, anon_sym_RPAREN, - [43965] = 2, + [44726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2233), 1, anon_sym_SEMI, - [43972] = 2, + [44733] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_LF, + [44740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3412), 1, aux_sym_preproc_if_token2, - [43979] = 2, + [44747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3414), 1, sym_identifier, - [43986] = 2, + [44754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 1, - anon_sym_RPAREN, - [43993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 1, - anon_sym_RPAREN, - [44000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, + ACTIONS(2231), 1, anon_sym_SEMI, - [44007] = 2, + [44761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3416), 1, aux_sym_preproc_if_token2, - [44014] = 2, - ACTIONS(2484), 1, + [44768] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3405), 1, + ACTIONS(3224), 1, anon_sym_LF, - [44021] = 2, + [44775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3418), 1, aux_sym_preproc_if_token2, - [44028] = 2, + [44782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(2235), 1, anon_sym_RPAREN, - [44035] = 2, + [44789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2132), 1, - anon_sym_RPAREN, - [44042] = 2, + ACTIONS(3420), 1, + sym_identifier, + [44796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, + ACTIONS(2187), 1, anon_sym_RPAREN, - [44049] = 2, + [44803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(2203), 1, anon_sym_SEMI, - [44056] = 2, + [44810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, - aux_sym_preproc_if_token2, - [44063] = 2, + ACTIONS(3422), 1, + anon_sym_SEMI, + [44817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3424), 1, + anon_sym_SEMI, + [44824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3426), 1, anon_sym_STAR, - [44070] = 2, + [44831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3428), 1, + anon_sym_SEMI, + [44838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3430), 1, + aux_sym_preproc_if_token2, + [44845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, + ACTIONS(3432), 1, aux_sym_preproc_if_token2, - [44077] = 2, + [44852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3434), 1, anon_sym_SEMI, - [44084] = 2, + [44859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3436), 1, anon_sym_SEMI, - [44091] = 2, + [44866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(3438), 1, aux_sym_preproc_if_token2, - [44098] = 2, + [44873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3440), 1, aux_sym_preproc_if_token2, - [44105] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3427), 1, - anon_sym_LF, - [44112] = 2, + [44880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, - anon_sym_RPAREN, - [44119] = 2, + ACTIONS(3442), 1, + aux_sym_preproc_if_token2, + [44887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - sym_identifier, - [44126] = 2, + ACTIONS(3444), 1, + anon_sym_SEMI, + [44894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3446), 1, aux_sym_preproc_if_token2, - [44133] = 2, - ACTIONS(2484), 1, + [44901] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3448), 1, anon_sym_LF, - [44140] = 2, + [44908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3450), 1, sym_identifier, - [44147] = 2, + [44915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, - sym_identifier, - [44154] = 2, + ACTIONS(3452), 1, + anon_sym_STAR, + [44922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_SQUOTE, - [44161] = 2, + ACTIONS(3454), 1, + anon_sym_RPAREN, + [44929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3456), 1, sym_identifier, - [44168] = 2, + [44936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, - anon_sym_SEMI, - [44175] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3445), 1, - anon_sym_LF, - [44182] = 2, + ACTIONS(2217), 1, + anon_sym_RPAREN, + [44943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(2185), 1, anon_sym_RPAREN, - [44189] = 2, + [44950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3458), 1, anon_sym_RPAREN, - [44196] = 2, + [44957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3460), 1, anon_sym_RPAREN, - [44203] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3453), 1, - anon_sym_LF, - [44210] = 2, + [44964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, + ACTIONS(3462), 1, aux_sym_preproc_if_token2, - [44217] = 2, + [44971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - anon_sym_SEMI, - [44224] = 2, - ACTIONS(2484), 1, + ACTIONS(3464), 1, + aux_sym_preproc_if_token2, + [44978] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 1, - anon_sym_LF, - [44231] = 2, + ACTIONS(3466), 1, + aux_sym_preproc_if_token2, + [44985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2149), 1, anon_sym_SEMI, - [44238] = 2, + [44992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, - anon_sym_SEMI, - [44245] = 2, + ACTIONS(3468), 1, + aux_sym_preproc_if_token2, + [44999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(2155), 1, anon_sym_SEMI, - [44252] = 2, + [45006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, - anon_sym_SEMI, - [44259] = 2, + ACTIONS(3470), 1, + anon_sym_RPAREN, + [45013] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_LF, + [45020] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3474), 1, + anon_sym_LF, + [45027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, + ACTIONS(2191), 1, anon_sym_SEMI, - [44266] = 2, + [45034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym_COLON, - [44273] = 2, + ACTIONS(3476), 1, + anon_sym_SQUOTE, + [45041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_STAR, - [44280] = 2, + ACTIONS(3478), 1, + anon_sym_SEMI, + [45048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, - sym_identifier, - [44287] = 2, + ACTIONS(2151), 1, + anon_sym_SEMI, + [45055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - anon_sym_RPAREN, - [44294] = 2, + ACTIONS(3480), 1, + aux_sym_preproc_if_token2, + [45062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, - aux_sym_preproc_if_token2, - [44301] = 2, + ACTIONS(3482), 1, + sym_identifier, + [45069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(3484), 1, anon_sym_RPAREN, - [44308] = 2, + [45076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_SQUOTE, - [44315] = 2, - ACTIONS(3), 1, + ACTIONS(3486), 1, + anon_sym_RPAREN, + [45083] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_SEMI, - [44322] = 2, + ACTIONS(3488), 1, + anon_sym_LF, + [45090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_SEMI, - [44329] = 2, + ACTIONS(3490), 1, + anon_sym_COMMA, + [45097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_while, - [44336] = 2, + ACTIONS(3492), 1, + anon_sym_RPAREN, + [45104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, + ACTIONS(2255), 1, anon_sym_RPAREN, - [44343] = 2, + [45111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2161), 1, anon_sym_RPAREN, - [44350] = 2, + [45118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - anon_sym_SEMI, - [44357] = 2, - ACTIONS(3), 1, + ACTIONS(3494), 1, + sym_identifier, + [45125] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3477), 1, - aux_sym_preproc_if_token2, - [44364] = 2, + ACTIONS(3146), 1, + anon_sym_LF, + [45132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, - aux_sym_preproc_if_token2, - [44371] = 2, + ACTIONS(2167), 1, + anon_sym_SEMI, + [45139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, - anon_sym_RPAREN, - [44378] = 2, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [45146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, + ACTIONS(3496), 1, anon_sym_RPAREN, - [44385] = 2, + [45153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3498), 1, sym_identifier, - [44392] = 2, + [45160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, + ACTIONS(3500), 1, sym_identifier, - [44399] = 2, + [45167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, - anon_sym_SEMI, - [44406] = 2, + ACTIONS(3502), 1, + aux_sym_preproc_if_token2, + [45174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - sym_identifier, - [44413] = 2, + ACTIONS(3504), 1, + anon_sym_SEMI, + [45181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, - aux_sym_preproc_if_token2, - [44420] = 2, + ACTIONS(3506), 1, + anon_sym_SEMI, + [45188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, + ACTIONS(3508), 1, aux_sym_preproc_if_token2, - [44427] = 2, + [45195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym_SEMI, - [44434] = 2, + ACTIONS(3510), 1, + anon_sym_COLON, + [45202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3512), 1, sym_identifier, - [44441] = 2, + [45209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_SEMI, - [44448] = 2, + ACTIONS(3514), 1, + anon_sym_COLON, + [45216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, - aux_sym_preproc_if_token2, - [44455] = 2, + ACTIONS(3516), 1, + sym_identifier, + [45223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_STAR, - [44462] = 2, - ACTIONS(3), 1, + ACTIONS(3518), 1, + anon_sym_RPAREN, + [45230] = 2, + ACTIONS(1759), 1, + anon_sym_LF, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3503), 1, - aux_sym_preproc_if_token2, - [44469] = 2, + [45237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, - anon_sym_RPAREN, - [44476] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3507), 1, + ACTIONS(3520), 1, + anon_sym_STAR, + [45244] = 2, + ACTIONS(1749), 1, anon_sym_LF, - [44483] = 2, + ACTIONS(2495), 1, + sym_comment, + [45251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, - anon_sym_SEMI, - [44490] = 2, + ACTIONS(3522), 1, + anon_sym_COLON, + [45258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, + ACTIONS(3524), 1, sym_identifier, - [44497] = 2, + [45265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 1, + ACTIONS(3526), 1, anon_sym_SEMI, - [44504] = 2, + [45272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(3528), 1, anon_sym_SEMI, - [44511] = 2, + [45279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, + ACTIONS(2211), 1, anon_sym_SEMI, - [44518] = 2, + [45286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_RPAREN, - [44525] = 2, + ACTIONS(3530), 1, + aux_sym_preproc_if_token2, + [45293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, - aux_sym_preproc_if_token2, - [44532] = 2, + ACTIONS(3532), 1, + sym_identifier, + [45300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 1, + ACTIONS(2157), 1, anon_sym_SEMI, - [44539] = 2, - ACTIONS(3), 1, + [45307] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_RPAREN, - [44546] = 2, + ACTIONS(3201), 1, + anon_sym_LF, + [45314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2153), 1, anon_sym_SEMI, - [44553] = 2, + [45321] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LF, + [45328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(2207), 1, anon_sym_RPAREN, - [44560] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3521), 1, - anon_sym_LF, - [44567] = 2, + [45335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, + ACTIONS(2213), 1, anon_sym_SEMI, - [44574] = 2, + [45342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_SQUOTE, - [44581] = 2, + ACTIONS(3536), 1, + sym_identifier, + [45349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3538), 1, sym_identifier, - [44588] = 2, + [45356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3540), 1, sym_identifier, - [44595] = 2, - ACTIONS(2484), 1, + [45363] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3542), 1, anon_sym_LF, - [44602] = 2, + [45370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, - anon_sym_SEMI, - [44609] = 2, + ACTIONS(3544), 1, + aux_sym_preproc_if_token2, + [45377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_SEMI, - [44616] = 2, + ACTIONS(3546), 1, + anon_sym_STAR, + [45384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3548), 1, sym_identifier, - [44623] = 2, + [45391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(2201), 1, anon_sym_RPAREN, - [44630] = 2, + [45398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 1, + ACTIONS(2199), 1, anon_sym_RPAREN, - [44637] = 2, - ACTIONS(2484), 1, + [45405] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3537), 1, - anon_sym_LF, - [44644] = 2, - ACTIONS(2484), 1, + ACTIONS(3550), 1, + anon_sym_SQUOTE, + [45412] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LF, - [44651] = 2, + ACTIONS(3552), 1, + anon_sym_SEMI, + [45419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, + ACTIONS(2159), 1, anon_sym_SEMI, - [44658] = 2, + [45426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, - aux_sym_preproc_if_token2, - [44665] = 2, + ACTIONS(3554), 1, + anon_sym_RPAREN, + [45433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_SEMI, - [44672] = 2, + ACTIONS(3556), 1, + anon_sym_while, + [45440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_SEMI, - [44679] = 2, + ACTIONS(2197), 1, + anon_sym_RPAREN, + [45447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, - anon_sym_COLON, - [44686] = 2, + ACTIONS(2193), 1, + anon_sym_RPAREN, + [45454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2171), 1, anon_sym_SEMI, - [44693] = 2, + [45461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 1, - anon_sym_RBRACE, - [44700] = 2, + ACTIONS(3558), 1, + anon_sym_SEMI, + [45468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 1, + ACTIONS(2179), 1, anon_sym_SEMI, - [44707] = 2, + [45475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3560), 1, aux_sym_preproc_if_token2, - [44714] = 2, + [45482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - aux_sym_preproc_if_token2, - [44721] = 2, + ACTIONS(3562), 1, + sym_identifier, + [45489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 1, + ACTIONS(2183), 1, anon_sym_SEMI, - [44728] = 2, + [45496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3564), 1, sym_identifier, - [44735] = 2, + [45503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(3566), 1, sym_identifier, - [44742] = 2, + [45510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3568), 1, sym_identifier, - [44749] = 2, + [45517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, + ACTIONS(2181), 1, anon_sym_SEMI, - [44756] = 2, - ACTIONS(2484), 1, + [45524] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_LF, - [44763] = 2, + ACTIONS(3570), 1, + aux_sym_preproc_if_token2, + [45531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, + ACTIONS(3572), 1, anon_sym_SEMI, - [44770] = 2, + [45538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(3574), 1, anon_sym_RPAREN, - [44777] = 2, + [45545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - ts_builtin_sym_end, - [44784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2144), 1, + ACTIONS(2221), 1, anon_sym_RPAREN, - [44791] = 2, - ACTIONS(3), 1, + [45552] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(2142), 1, - anon_sym_SEMI, - [44798] = 2, + ACTIONS(3576), 1, + anon_sym_LF, + [45559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - [44805] = 2, + ACTIONS(3578), 1, + anon_sym_SQUOTE, + [45566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(2173), 1, anon_sym_RPAREN, - [44812] = 2, + [45573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, - sym_identifier, - [44819] = 2, + ACTIONS(3580), 1, + anon_sym_RPAREN, + [45580] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3582), 1, + anon_sym_LF, + [45587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(3584), 1, anon_sym_while, - [44826] = 2, - ACTIONS(3), 1, + [45594] = 2, + ACTIONS(2495), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_SEMI, - [44833] = 2, + ACTIONS(3220), 1, + anon_sym_LF, + [45601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, + ACTIONS(2249), 1, anon_sym_SEMI, - [44840] = 2, + [45608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - [44847] = 2, + ACTIONS(3586), 1, + ts_builtin_sym_end, + [45615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 1, - anon_sym_COLON, - [44854] = 2, + ACTIONS(2169), 1, + anon_sym_RPAREN, + [45622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - aux_sym_preproc_if_token2, - [44861] = 2, + ACTIONS(3588), 1, + anon_sym_SEMI, + [45629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2251), 1, anon_sym_SEMI, - [44868] = 2, + [45636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_COLON, - [44875] = 2, + ACTIONS(3590), 1, + anon_sym_LPAREN2, + [45643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, - aux_sym_preproc_if_token2, - [44882] = 2, + ACTIONS(3592), 1, + anon_sym_LPAREN2, + [45650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - aux_sym_preproc_if_token2, - [44889] = 2, + ACTIONS(3594), 1, + sym_identifier, + [45657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3596), 1, anon_sym_SEMI, - [44896] = 2, + [45664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, - anon_sym_RPAREN, - [44903] = 2, + ACTIONS(3598), 1, + anon_sym_SEMI, + [45671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, + ACTIONS(3600), 1, anon_sym_while, - [44910] = 2, + [45678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, - anon_sym_RPAREN, - [44917] = 2, + ACTIONS(3602), 1, + anon_sym_LPAREN2, + [45685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, - anon_sym_RPAREN, - [44924] = 2, + ACTIONS(3604), 1, + aux_sym_preproc_if_token2, + [45692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - aux_sym_preproc_if_token2, - [44931] = 2, + ACTIONS(3606), 1, + anon_sym_COLON, + [45699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(2223), 1, anon_sym_SEMI, - [44938] = 2, + [45706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, + ACTIONS(3608), 1, aux_sym_preproc_if_token2, - [44945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2136), 1, - anon_sym_RPAREN, - [44952] = 2, + [45713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3610), 1, aux_sym_preproc_if_token2, - [44959] = 2, + [45720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_LPAREN2, - [44966] = 2, + ACTIONS(3612), 1, + anon_sym_RPAREN, + [45727] = 2, + ACTIONS(2495), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_LF, + [45734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3616), 1, anon_sym_while, - [44973] = 2, + [45741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, - anon_sym_COLON, - [44980] = 2, + ACTIONS(3618), 1, + anon_sym_SEMI, + [45748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - [44987] = 2, + [45755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, + ACTIONS(2163), 1, anon_sym_SEMI, - [44994] = 2, - ACTIONS(1656), 1, - anon_sym_LF, - ACTIONS(2484), 1, + [45762] = 2, + ACTIONS(3), 1, sym_comment, - [45001] = 2, + ACTIONS(3622), 1, + anon_sym_SEMI, + [45769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - sym_identifier, - [45008] = 2, + ACTIONS(3624), 1, + anon_sym_LPAREN2, + [45776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3626), 1, anon_sym_LPAREN2, - [45015] = 2, - ACTIONS(1652), 1, - anon_sym_LF, - ACTIONS(2484), 1, + [45783] = 2, + ACTIONS(3), 1, sym_comment, - [45022] = 2, + ACTIONS(3628), 1, + aux_sym_preproc_if_token2, + [45790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3630), 1, anon_sym_LPAREN2, - [45029] = 2, + [45797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 1, + ACTIONS(3632), 1, sym_identifier, - [45036] = 2, + [45804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, + ACTIONS(3634), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(385)] = 0, - [SMALL_STATE(386)] = 75, - [SMALL_STATE(387)] = 196, - [SMALL_STATE(388)] = 306, - [SMALL_STATE(389)] = 416, - [SMALL_STATE(390)] = 526, - [SMALL_STATE(391)] = 636, - [SMALL_STATE(392)] = 746, - [SMALL_STATE(393)] = 856, - [SMALL_STATE(394)] = 966, - [SMALL_STATE(395)] = 1076, - [SMALL_STATE(396)] = 1186, - [SMALL_STATE(397)] = 1296, - [SMALL_STATE(398)] = 1406, - [SMALL_STATE(399)] = 1516, - [SMALL_STATE(400)] = 1626, - [SMALL_STATE(401)] = 1736, - [SMALL_STATE(402)] = 1813, - [SMALL_STATE(403)] = 1892, - [SMALL_STATE(404)] = 1969, - [SMALL_STATE(405)] = 2048, - [SMALL_STATE(406)] = 2127, - [SMALL_STATE(407)] = 2204, - [SMALL_STATE(408)] = 2283, - [SMALL_STATE(409)] = 2360, - [SMALL_STATE(410)] = 2434, - [SMALL_STATE(411)] = 2538, - [SMALL_STATE(412)] = 2640, - [SMALL_STATE(413)] = 2737, - [SMALL_STATE(414)] = 2834, - [SMALL_STATE(415)] = 2931, - [SMALL_STATE(416)] = 3028, - [SMALL_STATE(417)] = 3125, - [SMALL_STATE(418)] = 3222, - [SMALL_STATE(419)] = 3323, - [SMALL_STATE(420)] = 3420, - [SMALL_STATE(421)] = 3521, - [SMALL_STATE(422)] = 3618, - [SMALL_STATE(423)] = 3715, - [SMALL_STATE(424)] = 3812, - [SMALL_STATE(425)] = 3910, - [SMALL_STATE(426)] = 4010, - [SMALL_STATE(427)] = 4110, - [SMALL_STATE(428)] = 4210, - [SMALL_STATE(429)] = 4310, - [SMALL_STATE(430)] = 4410, - [SMALL_STATE(431)] = 4510, - [SMALL_STATE(432)] = 4615, - [SMALL_STATE(433)] = 4708, - [SMALL_STATE(434)] = 4801, - [SMALL_STATE(435)] = 4862, - [SMALL_STATE(436)] = 4923, - [SMALL_STATE(437)] = 5016, - [SMALL_STATE(438)] = 5109, - [SMALL_STATE(439)] = 5170, - [SMALL_STATE(440)] = 5225, - [SMALL_STATE(441)] = 5280, - [SMALL_STATE(442)] = 5366, - [SMALL_STATE(443)] = 5452, - [SMALL_STATE(444)] = 5538, - [SMALL_STATE(445)] = 5624, - [SMALL_STATE(446)] = 5710, - [SMALL_STATE(447)] = 5796, - [SMALL_STATE(448)] = 5882, - [SMALL_STATE(449)] = 5968, - [SMALL_STATE(450)] = 6054, - [SMALL_STATE(451)] = 6140, - [SMALL_STATE(452)] = 6226, - [SMALL_STATE(453)] = 6312, - [SMALL_STATE(454)] = 6398, - [SMALL_STATE(455)] = 6484, - [SMALL_STATE(456)] = 6570, - [SMALL_STATE(457)] = 6656, - [SMALL_STATE(458)] = 6742, - [SMALL_STATE(459)] = 6828, - [SMALL_STATE(460)] = 6914, - [SMALL_STATE(461)] = 7000, - [SMALL_STATE(462)] = 7086, - [SMALL_STATE(463)] = 7172, - [SMALL_STATE(464)] = 7258, - [SMALL_STATE(465)] = 7344, - [SMALL_STATE(466)] = 7430, - [SMALL_STATE(467)] = 7516, - [SMALL_STATE(468)] = 7602, - [SMALL_STATE(469)] = 7688, - [SMALL_STATE(470)] = 7774, - [SMALL_STATE(471)] = 7860, - [SMALL_STATE(472)] = 7946, - [SMALL_STATE(473)] = 8032, - [SMALL_STATE(474)] = 8118, - [SMALL_STATE(475)] = 8204, - [SMALL_STATE(476)] = 8290, - [SMALL_STATE(477)] = 8376, - [SMALL_STATE(478)] = 8462, - [SMALL_STATE(479)] = 8548, - [SMALL_STATE(480)] = 8634, - [SMALL_STATE(481)] = 8720, - [SMALL_STATE(482)] = 8806, - [SMALL_STATE(483)] = 8892, - [SMALL_STATE(484)] = 8978, - [SMALL_STATE(485)] = 9064, - [SMALL_STATE(486)] = 9150, - [SMALL_STATE(487)] = 9236, - [SMALL_STATE(488)] = 9319, - [SMALL_STATE(489)] = 9402, - [SMALL_STATE(490)] = 9485, - [SMALL_STATE(491)] = 9568, - [SMALL_STATE(492)] = 9651, - [SMALL_STATE(493)] = 9734, - [SMALL_STATE(494)] = 9817, - [SMALL_STATE(495)] = 9900, - [SMALL_STATE(496)] = 9983, - [SMALL_STATE(497)] = 10066, - [SMALL_STATE(498)] = 10149, - [SMALL_STATE(499)] = 10232, - [SMALL_STATE(500)] = 10315, - [SMALL_STATE(501)] = 10398, - [SMALL_STATE(502)] = 10481, - [SMALL_STATE(503)] = 10564, - [SMALL_STATE(504)] = 10647, - [SMALL_STATE(505)] = 10730, - [SMALL_STATE(506)] = 10813, - [SMALL_STATE(507)] = 10893, - [SMALL_STATE(508)] = 10973, - [SMALL_STATE(509)] = 11053, - [SMALL_STATE(510)] = 11133, - [SMALL_STATE(511)] = 11213, - [SMALL_STATE(512)] = 11293, - [SMALL_STATE(513)] = 11373, - [SMALL_STATE(514)] = 11453, - [SMALL_STATE(515)] = 11533, - [SMALL_STATE(516)] = 11613, - [SMALL_STATE(517)] = 11693, - [SMALL_STATE(518)] = 11773, - [SMALL_STATE(519)] = 11853, - [SMALL_STATE(520)] = 11933, - [SMALL_STATE(521)] = 12013, - [SMALL_STATE(522)] = 12093, - [SMALL_STATE(523)] = 12173, - [SMALL_STATE(524)] = 12253, - [SMALL_STATE(525)] = 12333, - [SMALL_STATE(526)] = 12413, - [SMALL_STATE(527)] = 12493, - [SMALL_STATE(528)] = 12573, - [SMALL_STATE(529)] = 12637, - [SMALL_STATE(530)] = 12717, - [SMALL_STATE(531)] = 12797, - [SMALL_STATE(532)] = 12877, - [SMALL_STATE(533)] = 12957, - [SMALL_STATE(534)] = 13037, - [SMALL_STATE(535)] = 13117, - [SMALL_STATE(536)] = 13197, - [SMALL_STATE(537)] = 13277, - [SMALL_STATE(538)] = 13357, - [SMALL_STATE(539)] = 13437, - [SMALL_STATE(540)] = 13517, - [SMALL_STATE(541)] = 13597, - [SMALL_STATE(542)] = 13677, - [SMALL_STATE(543)] = 13757, - [SMALL_STATE(544)] = 13837, - [SMALL_STATE(545)] = 13917, - [SMALL_STATE(546)] = 13997, - [SMALL_STATE(547)] = 14077, - [SMALL_STATE(548)] = 14157, - [SMALL_STATE(549)] = 14237, - [SMALL_STATE(550)] = 14317, - [SMALL_STATE(551)] = 14397, - [SMALL_STATE(552)] = 14477, - [SMALL_STATE(553)] = 14557, - [SMALL_STATE(554)] = 14637, - [SMALL_STATE(555)] = 14717, - [SMALL_STATE(556)] = 14797, - [SMALL_STATE(557)] = 14877, - [SMALL_STATE(558)] = 14957, - [SMALL_STATE(559)] = 15037, - [SMALL_STATE(560)] = 15117, - [SMALL_STATE(561)] = 15197, - [SMALL_STATE(562)] = 15277, - [SMALL_STATE(563)] = 15357, - [SMALL_STATE(564)] = 15437, - [SMALL_STATE(565)] = 15517, - [SMALL_STATE(566)] = 15597, - [SMALL_STATE(567)] = 15677, - [SMALL_STATE(568)] = 15757, - [SMALL_STATE(569)] = 15837, - [SMALL_STATE(570)] = 15917, - [SMALL_STATE(571)] = 15997, - [SMALL_STATE(572)] = 16077, - [SMALL_STATE(573)] = 16157, - [SMALL_STATE(574)] = 16237, - [SMALL_STATE(575)] = 16317, - [SMALL_STATE(576)] = 16397, - [SMALL_STATE(577)] = 16477, - [SMALL_STATE(578)] = 16557, - [SMALL_STATE(579)] = 16637, - [SMALL_STATE(580)] = 16717, - [SMALL_STATE(581)] = 16797, - [SMALL_STATE(582)] = 16877, - [SMALL_STATE(583)] = 16957, - [SMALL_STATE(584)] = 17008, - [SMALL_STATE(585)] = 17074, - [SMALL_STATE(586)] = 17124, - [SMALL_STATE(587)] = 17188, - [SMALL_STATE(588)] = 17254, - [SMALL_STATE(589)] = 17324, - [SMALL_STATE(590)] = 17374, - [SMALL_STATE(591)] = 17446, - [SMALL_STATE(592)] = 17504, - [SMALL_STATE(593)] = 17564, - [SMALL_STATE(594)] = 17638, - [SMALL_STATE(595)] = 17688, - [SMALL_STATE(596)] = 17738, - [SMALL_STATE(597)] = 17788, - [SMALL_STATE(598)] = 17864, - [SMALL_STATE(599)] = 17942, - [SMALL_STATE(600)] = 17992, - [SMALL_STATE(601)] = 18072, - [SMALL_STATE(602)] = 18122, - [SMALL_STATE(603)] = 18184, - [SMALL_STATE(604)] = 18268, - [SMALL_STATE(605)] = 18318, - [SMALL_STATE(606)] = 18378, - [SMALL_STATE(607)] = 18428, - [SMALL_STATE(608)] = 18478, - [SMALL_STATE(609)] = 18562, - [SMALL_STATE(610)] = 18622, - [SMALL_STATE(611)] = 18682, - [SMALL_STATE(612)] = 18732, - [SMALL_STATE(613)] = 18782, - [SMALL_STATE(614)] = 18832, - [SMALL_STATE(615)] = 18882, - [SMALL_STATE(616)] = 18964, - [SMALL_STATE(617)] = 19014, - [SMALL_STATE(618)] = 19064, - [SMALL_STATE(619)] = 19114, - [SMALL_STATE(620)] = 19198, - [SMALL_STATE(621)] = 19279, - [SMALL_STATE(622)] = 19332, - [SMALL_STATE(623)] = 19380, - [SMALL_STATE(624)] = 19428, - [SMALL_STATE(625)] = 19476, - [SMALL_STATE(626)] = 19529, - [SMALL_STATE(627)] = 19582, - [SMALL_STATE(628)] = 19635, - [SMALL_STATE(629)] = 19688, - [SMALL_STATE(630)] = 19768, - [SMALL_STATE(631)] = 19834, - [SMALL_STATE(632)] = 19890, - [SMALL_STATE(633)] = 19946, - [SMALL_STATE(634)] = 20002, - [SMALL_STATE(635)] = 20070, - [SMALL_STATE(636)] = 20140, - [SMALL_STATE(637)] = 20214, - [SMALL_STATE(638)] = 20268, - [SMALL_STATE(639)] = 20348, - [SMALL_STATE(640)] = 20420, - [SMALL_STATE(641)] = 20494, - [SMALL_STATE(642)] = 20568, - [SMALL_STATE(643)] = 20642, - [SMALL_STATE(644)] = 20718, - [SMALL_STATE(645)] = 20776, - [SMALL_STATE(646)] = 20834, - [SMALL_STATE(647)] = 20894, - [SMALL_STATE(648)] = 20956, - [SMALL_STATE(649)] = 21030, - [SMALL_STATE(650)] = 21086, - [SMALL_STATE(651)] = 21148, - [SMALL_STATE(652)] = 21226, - [SMALL_STATE(653)] = 21271, - [SMALL_STATE(654)] = 21316, - [SMALL_STATE(655)] = 21365, - [SMALL_STATE(656)] = 21436, - [SMALL_STATE(657)] = 21481, - [SMALL_STATE(658)] = 21557, - [SMALL_STATE(659)] = 21604, - [SMALL_STATE(660)] = 21645, - [SMALL_STATE(661)] = 21686, - [SMALL_STATE(662)] = 21726, - [SMALL_STATE(663)] = 21765, - [SMALL_STATE(664)] = 21804, - [SMALL_STATE(665)] = 21843, - [SMALL_STATE(666)] = 21904, - [SMALL_STATE(667)] = 21977, - [SMALL_STATE(668)] = 22016, - [SMALL_STATE(669)] = 22073, - [SMALL_STATE(670)] = 22112, - [SMALL_STATE(671)] = 22151, - [SMALL_STATE(672)] = 22190, - [SMALL_STATE(673)] = 22243, - [SMALL_STATE(674)] = 22282, - [SMALL_STATE(675)] = 22321, - [SMALL_STATE(676)] = 22360, - [SMALL_STATE(677)] = 22399, - [SMALL_STATE(678)] = 22438, - [SMALL_STATE(679)] = 22477, - [SMALL_STATE(680)] = 22516, - [SMALL_STATE(681)] = 22555, - [SMALL_STATE(682)] = 22594, - [SMALL_STATE(683)] = 22651, - [SMALL_STATE(684)] = 22722, - [SMALL_STATE(685)] = 22791, - [SMALL_STATE(686)] = 22830, - [SMALL_STATE(687)] = 22897, - [SMALL_STATE(688)] = 22964, - [SMALL_STATE(689)] = 23003, - [SMALL_STATE(690)] = 23042, - [SMALL_STATE(691)] = 23107, - [SMALL_STATE(692)] = 23180, - [SMALL_STATE(693)] = 23219, - [SMALL_STATE(694)] = 23282, - [SMALL_STATE(695)] = 23337, - [SMALL_STATE(696)] = 23376, - [SMALL_STATE(697)] = 23415, - [SMALL_STATE(698)] = 23454, - [SMALL_STATE(699)] = 23493, - [SMALL_STATE(700)] = 23543, - [SMALL_STATE(701)] = 23593, - [SMALL_STATE(702)] = 23631, - [SMALL_STATE(703)] = 23681, - [SMALL_STATE(704)] = 23731, - [SMALL_STATE(705)] = 23769, - [SMALL_STATE(706)] = 23806, - [SMALL_STATE(707)] = 23843, - [SMALL_STATE(708)] = 23884, - [SMALL_STATE(709)] = 23921, - [SMALL_STATE(710)] = 23958, - [SMALL_STATE(711)] = 24033, - [SMALL_STATE(712)] = 24070, - [SMALL_STATE(713)] = 24107, - [SMALL_STATE(714)] = 24144, - [SMALL_STATE(715)] = 24181, - [SMALL_STATE(716)] = 24218, - [SMALL_STATE(717)] = 24255, - [SMALL_STATE(718)] = 24292, - [SMALL_STATE(719)] = 24329, - [SMALL_STATE(720)] = 24366, - [SMALL_STATE(721)] = 24403, - [SMALL_STATE(722)] = 24448, - [SMALL_STATE(723)] = 24485, - [SMALL_STATE(724)] = 24522, - [SMALL_STATE(725)] = 24559, - [SMALL_STATE(726)] = 24600, - [SMALL_STATE(727)] = 24641, - [SMALL_STATE(728)] = 24682, - [SMALL_STATE(729)] = 24719, - [SMALL_STATE(730)] = 24756, - [SMALL_STATE(731)] = 24793, - [SMALL_STATE(732)] = 24834, - [SMALL_STATE(733)] = 24909, - [SMALL_STATE(734)] = 24946, - [SMALL_STATE(735)] = 24983, - [SMALL_STATE(736)] = 25020, - [SMALL_STATE(737)] = 25057, - [SMALL_STATE(738)] = 25094, - [SMALL_STATE(739)] = 25131, - [SMALL_STATE(740)] = 25168, - [SMALL_STATE(741)] = 25205, - [SMALL_STATE(742)] = 25242, - [SMALL_STATE(743)] = 25279, - [SMALL_STATE(744)] = 25316, - [SMALL_STATE(745)] = 25353, - [SMALL_STATE(746)] = 25390, - [SMALL_STATE(747)] = 25463, - [SMALL_STATE(748)] = 25500, - [SMALL_STATE(749)] = 25537, - [SMALL_STATE(750)] = 25612, - [SMALL_STATE(751)] = 25649, - [SMALL_STATE(752)] = 25686, - [SMALL_STATE(753)] = 25723, - [SMALL_STATE(754)] = 25760, - [SMALL_STATE(755)] = 25797, - [SMALL_STATE(756)] = 25872, - [SMALL_STATE(757)] = 25944, - [SMALL_STATE(758)] = 26016, - [SMALL_STATE(759)] = 26076, - [SMALL_STATE(760)] = 26148, - [SMALL_STATE(761)] = 26218, - [SMALL_STATE(762)] = 26288, - [SMALL_STATE(763)] = 26360, - [SMALL_STATE(764)] = 26432, - [SMALL_STATE(765)] = 26504, - [SMALL_STATE(766)] = 26576, - [SMALL_STATE(767)] = 26648, - [SMALL_STATE(768)] = 26718, - [SMALL_STATE(769)] = 26790, - [SMALL_STATE(770)] = 26860, - [SMALL_STATE(771)] = 26932, - [SMALL_STATE(772)] = 27004, - [SMALL_STATE(773)] = 27076, - [SMALL_STATE(774)] = 27148, - [SMALL_STATE(775)] = 27220, - [SMALL_STATE(776)] = 27292, - [SMALL_STATE(777)] = 27364, - [SMALL_STATE(778)] = 27434, - [SMALL_STATE(779)] = 27506, - [SMALL_STATE(780)] = 27578, - [SMALL_STATE(781)] = 27650, - [SMALL_STATE(782)] = 27722, - [SMALL_STATE(783)] = 27794, - [SMALL_STATE(784)] = 27866, - [SMALL_STATE(785)] = 27938, - [SMALL_STATE(786)] = 28010, - [SMALL_STATE(787)] = 28082, - [SMALL_STATE(788)] = 28154, - [SMALL_STATE(789)] = 28226, - [SMALL_STATE(790)] = 28298, - [SMALL_STATE(791)] = 28370, - [SMALL_STATE(792)] = 28442, - [SMALL_STATE(793)] = 28514, - [SMALL_STATE(794)] = 28586, - [SMALL_STATE(795)] = 28656, - [SMALL_STATE(796)] = 28728, - [SMALL_STATE(797)] = 28800, - [SMALL_STATE(798)] = 28872, - [SMALL_STATE(799)] = 28944, - [SMALL_STATE(800)] = 29016, - [SMALL_STATE(801)] = 29088, - [SMALL_STATE(802)] = 29160, - [SMALL_STATE(803)] = 29232, - [SMALL_STATE(804)] = 29304, - [SMALL_STATE(805)] = 29376, - [SMALL_STATE(806)] = 29448, - [SMALL_STATE(807)] = 29520, - [SMALL_STATE(808)] = 29592, - [SMALL_STATE(809)] = 29664, - [SMALL_STATE(810)] = 29736, - [SMALL_STATE(811)] = 29808, - [SMALL_STATE(812)] = 29880, - [SMALL_STATE(813)] = 29952, - [SMALL_STATE(814)] = 30013, - [SMALL_STATE(815)] = 30082, - [SMALL_STATE(816)] = 30151, - [SMALL_STATE(817)] = 30220, - [SMALL_STATE(818)] = 30277, - [SMALL_STATE(819)] = 30334, - [SMALL_STATE(820)] = 30403, - [SMALL_STATE(821)] = 30472, - [SMALL_STATE(822)] = 30541, - [SMALL_STATE(823)] = 30598, - [SMALL_STATE(824)] = 30667, - [SMALL_STATE(825)] = 30736, - [SMALL_STATE(826)] = 30805, - [SMALL_STATE(827)] = 30874, - [SMALL_STATE(828)] = 30943, - [SMALL_STATE(829)] = 31000, - [SMALL_STATE(830)] = 31069, - [SMALL_STATE(831)] = 31126, - [SMALL_STATE(832)] = 31195, - [SMALL_STATE(833)] = 31252, - [SMALL_STATE(834)] = 31309, - [SMALL_STATE(835)] = 31366, - [SMALL_STATE(836)] = 31435, - [SMALL_STATE(837)] = 31486, - [SMALL_STATE(838)] = 31555, - [SMALL_STATE(839)] = 31608, - [SMALL_STATE(840)] = 31665, - [SMALL_STATE(841)] = 31718, - [SMALL_STATE(842)] = 31787, - [SMALL_STATE(843)] = 31844, - [SMALL_STATE(844)] = 31903, - [SMALL_STATE(845)] = 31972, - [SMALL_STATE(846)] = 32029, - [SMALL_STATE(847)] = 32098, - [SMALL_STATE(848)] = 32161, - [SMALL_STATE(849)] = 32230, - [SMALL_STATE(850)] = 32287, - [SMALL_STATE(851)] = 32356, - [SMALL_STATE(852)] = 32425, - [SMALL_STATE(853)] = 32494, - [SMALL_STATE(854)] = 32557, - [SMALL_STATE(855)] = 32626, - [SMALL_STATE(856)] = 32695, - [SMALL_STATE(857)] = 32760, - [SMALL_STATE(858)] = 32817, - [SMALL_STATE(859)] = 32866, - [SMALL_STATE(860)] = 32933, - [SMALL_STATE(861)] = 32981, - [SMALL_STATE(862)] = 33029, - [SMALL_STATE(863)] = 33077, - [SMALL_STATE(864)] = 33125, - [SMALL_STATE(865)] = 33178, - [SMALL_STATE(866)] = 33215, - [SMALL_STATE(867)] = 33252, - [SMALL_STATE(868)] = 33289, - [SMALL_STATE(869)] = 33342, - [SMALL_STATE(870)] = 33395, - [SMALL_STATE(871)] = 33432, - [SMALL_STATE(872)] = 33469, - [SMALL_STATE(873)] = 33519, - [SMALL_STATE(874)] = 33569, - [SMALL_STATE(875)] = 33619, - [SMALL_STATE(876)] = 33669, - [SMALL_STATE(877)] = 33705, - [SMALL_STATE(878)] = 33755, - [SMALL_STATE(879)] = 33805, - [SMALL_STATE(880)] = 33855, - [SMALL_STATE(881)] = 33905, - [SMALL_STATE(882)] = 33955, - [SMALL_STATE(883)] = 33986, - [SMALL_STATE(884)] = 34017, - [SMALL_STATE(885)] = 34048, - [SMALL_STATE(886)] = 34079, - [SMALL_STATE(887)] = 34110, - [SMALL_STATE(888)] = 34141, - [SMALL_STATE(889)] = 34172, - [SMALL_STATE(890)] = 34205, - [SMALL_STATE(891)] = 34236, - [SMALL_STATE(892)] = 34267, - [SMALL_STATE(893)] = 34298, - [SMALL_STATE(894)] = 34329, - [SMALL_STATE(895)] = 34360, - [SMALL_STATE(896)] = 34391, - [SMALL_STATE(897)] = 34422, - [SMALL_STATE(898)] = 34453, - [SMALL_STATE(899)] = 34484, - [SMALL_STATE(900)] = 34515, - [SMALL_STATE(901)] = 34546, - [SMALL_STATE(902)] = 34577, - [SMALL_STATE(903)] = 34608, - [SMALL_STATE(904)] = 34639, - [SMALL_STATE(905)] = 34673, - [SMALL_STATE(906)] = 34716, - [SMALL_STATE(907)] = 34771, - [SMALL_STATE(908)] = 34804, - [SMALL_STATE(909)] = 34859, - [SMALL_STATE(910)] = 34902, - [SMALL_STATE(911)] = 34937, - [SMALL_STATE(912)] = 34977, - [SMALL_STATE(913)] = 35017, - [SMALL_STATE(914)] = 35057, - [SMALL_STATE(915)] = 35097, - [SMALL_STATE(916)] = 35137, - [SMALL_STATE(917)] = 35177, - [SMALL_STATE(918)] = 35217, - [SMALL_STATE(919)] = 35257, - [SMALL_STATE(920)] = 35297, - [SMALL_STATE(921)] = 35325, - [SMALL_STATE(922)] = 35353, - [SMALL_STATE(923)] = 35381, - [SMALL_STATE(924)] = 35421, - [SMALL_STATE(925)] = 35461, - [SMALL_STATE(926)] = 35501, - [SMALL_STATE(927)] = 35541, - [SMALL_STATE(928)] = 35581, - [SMALL_STATE(929)] = 35621, - [SMALL_STATE(930)] = 35661, - [SMALL_STATE(931)] = 35689, - [SMALL_STATE(932)] = 35717, - [SMALL_STATE(933)] = 35749, - [SMALL_STATE(934)] = 35777, - [SMALL_STATE(935)] = 35825, - [SMALL_STATE(936)] = 35871, - [SMALL_STATE(937)] = 35911, - [SMALL_STATE(938)] = 35957, - [SMALL_STATE(939)] = 35997, - [SMALL_STATE(940)] = 36037, - [SMALL_STATE(941)] = 36077, - [SMALL_STATE(942)] = 36121, - [SMALL_STATE(943)] = 36161, - [SMALL_STATE(944)] = 36201, - [SMALL_STATE(945)] = 36241, - [SMALL_STATE(946)] = 36283, - [SMALL_STATE(947)] = 36323, - [SMALL_STATE(948)] = 36363, - [SMALL_STATE(949)] = 36403, - [SMALL_STATE(950)] = 36443, - [SMALL_STATE(951)] = 36483, - [SMALL_STATE(952)] = 36523, - [SMALL_STATE(953)] = 36563, - [SMALL_STATE(954)] = 36603, - [SMALL_STATE(955)] = 36651, - [SMALL_STATE(956)] = 36691, - [SMALL_STATE(957)] = 36731, - [SMALL_STATE(958)] = 36767, - [SMALL_STATE(959)] = 36801, - [SMALL_STATE(960)] = 36829, - [SMALL_STATE(961)] = 36857, - [SMALL_STATE(962)] = 36885, - [SMALL_STATE(963)] = 36925, - [SMALL_STATE(964)] = 36965, - [SMALL_STATE(965)] = 36993, - [SMALL_STATE(966)] = 37043, - [SMALL_STATE(967)] = 37070, - [SMALL_STATE(968)] = 37111, - [SMALL_STATE(969)] = 37138, - [SMALL_STATE(970)] = 37179, - [SMALL_STATE(971)] = 37224, - [SMALL_STATE(972)] = 37251, - [SMALL_STATE(973)] = 37278, - [SMALL_STATE(974)] = 37327, - [SMALL_STATE(975)] = 37368, - [SMALL_STATE(976)] = 37397, - [SMALL_STATE(977)] = 37424, - [SMALL_STATE(978)] = 37469, - [SMALL_STATE(979)] = 37496, - [SMALL_STATE(980)] = 37541, - [SMALL_STATE(981)] = 37586, - [SMALL_STATE(982)] = 37629, - [SMALL_STATE(983)] = 37670, - [SMALL_STATE(984)] = 37709, - [SMALL_STATE(985)] = 37750, - [SMALL_STATE(986)] = 37787, - [SMALL_STATE(987)] = 37822, - [SMALL_STATE(988)] = 37855, - [SMALL_STATE(989)] = 37882, - [SMALL_STATE(990)] = 37923, - [SMALL_STATE(991)] = 37954, - [SMALL_STATE(992)] = 37999, - [SMALL_STATE(993)] = 38026, - [SMALL_STATE(994)] = 38053, - [SMALL_STATE(995)] = 38094, - [SMALL_STATE(996)] = 38135, - [SMALL_STATE(997)] = 38176, - [SMALL_STATE(998)] = 38221, - [SMALL_STATE(999)] = 38262, - [SMALL_STATE(1000)] = 38289, - [SMALL_STATE(1001)] = 38330, - [SMALL_STATE(1002)] = 38371, - [SMALL_STATE(1003)] = 38420, - [SMALL_STATE(1004)] = 38465, - [SMALL_STATE(1005)] = 38510, - [SMALL_STATE(1006)] = 38555, - [SMALL_STATE(1007)] = 38596, - [SMALL_STATE(1008)] = 38641, - [SMALL_STATE(1009)] = 38682, - [SMALL_STATE(1010)] = 38723, - [SMALL_STATE(1011)] = 38764, - [SMALL_STATE(1012)] = 38798, - [SMALL_STATE(1013)] = 38832, - [SMALL_STATE(1014)] = 38855, - [SMALL_STATE(1015)] = 38878, - [SMALL_STATE(1016)] = 38916, - [SMALL_STATE(1017)] = 38954, - [SMALL_STATE(1018)] = 38992, - [SMALL_STATE(1019)] = 39024, - [SMALL_STATE(1020)] = 39056, - [SMALL_STATE(1021)] = 39088, - [SMALL_STATE(1022)] = 39120, - [SMALL_STATE(1023)] = 39152, - [SMALL_STATE(1024)] = 39190, - [SMALL_STATE(1025)] = 39228, - [SMALL_STATE(1026)] = 39266, - [SMALL_STATE(1027)] = 39298, - [SMALL_STATE(1028)] = 39330, - [SMALL_STATE(1029)] = 39362, - [SMALL_STATE(1030)] = 39394, - [SMALL_STATE(1031)] = 39432, - [SMALL_STATE(1032)] = 39459, - [SMALL_STATE(1033)] = 39488, - [SMALL_STATE(1034)] = 39523, - [SMALL_STATE(1035)] = 39552, - [SMALL_STATE(1036)] = 39581, - [SMALL_STATE(1037)] = 39610, - [SMALL_STATE(1038)] = 39639, - [SMALL_STATE(1039)] = 39668, - [SMALL_STATE(1040)] = 39697, - [SMALL_STATE(1041)] = 39720, - [SMALL_STATE(1042)] = 39749, - [SMALL_STATE(1043)] = 39778, - [SMALL_STATE(1044)] = 39805, - [SMALL_STATE(1045)] = 39834, - [SMALL_STATE(1046)] = 39863, - [SMALL_STATE(1047)] = 39892, - [SMALL_STATE(1048)] = 39921, - [SMALL_STATE(1049)] = 39956, - [SMALL_STATE(1050)] = 39991, - [SMALL_STATE(1051)] = 40014, - [SMALL_STATE(1052)] = 40043, - [SMALL_STATE(1053)] = 40072, - [SMALL_STATE(1054)] = 40095, - [SMALL_STATE(1055)] = 40124, - [SMALL_STATE(1056)] = 40153, - [SMALL_STATE(1057)] = 40180, - [SMALL_STATE(1058)] = 40203, - [SMALL_STATE(1059)] = 40230, - [SMALL_STATE(1060)] = 40256, - [SMALL_STATE(1061)] = 40274, - [SMALL_STATE(1062)] = 40292, - [SMALL_STATE(1063)] = 40324, - [SMALL_STATE(1064)] = 40356, - [SMALL_STATE(1065)] = 40388, - [SMALL_STATE(1066)] = 40406, - [SMALL_STATE(1067)] = 40432, - [SMALL_STATE(1068)] = 40458, - [SMALL_STATE(1069)] = 40490, - [SMALL_STATE(1070)] = 40516, - [SMALL_STATE(1071)] = 40538, - [SMALL_STATE(1072)] = 40567, - [SMALL_STATE(1073)] = 40596, - [SMALL_STATE(1074)] = 40617, - [SMALL_STATE(1075)] = 40644, - [SMALL_STATE(1076)] = 40669, - [SMALL_STATE(1077)] = 40694, - [SMALL_STATE(1078)] = 40715, - [SMALL_STATE(1079)] = 40736, - [SMALL_STATE(1080)] = 40765, - [SMALL_STATE(1081)] = 40790, - [SMALL_STATE(1082)] = 40819, - [SMALL_STATE(1083)] = 40844, - [SMALL_STATE(1084)] = 40865, - [SMALL_STATE(1085)] = 40886, - [SMALL_STATE(1086)] = 40915, - [SMALL_STATE(1087)] = 40944, - [SMALL_STATE(1088)] = 40973, - [SMALL_STATE(1089)] = 40998, - [SMALL_STATE(1090)] = 41027, - [SMALL_STATE(1091)] = 41043, - [SMALL_STATE(1092)] = 41069, - [SMALL_STATE(1093)] = 41085, - [SMALL_STATE(1094)] = 41111, - [SMALL_STATE(1095)] = 41131, - [SMALL_STATE(1096)] = 41147, - [SMALL_STATE(1097)] = 41171, - [SMALL_STATE(1098)] = 41197, - [SMALL_STATE(1099)] = 41213, - [SMALL_STATE(1100)] = 41237, - [SMALL_STATE(1101)] = 41253, - [SMALL_STATE(1102)] = 41279, - [SMALL_STATE(1103)] = 41295, - [SMALL_STATE(1104)] = 41310, - [SMALL_STATE(1105)] = 41325, - [SMALL_STATE(1106)] = 41340, - [SMALL_STATE(1107)] = 41355, - [SMALL_STATE(1108)] = 41370, - [SMALL_STATE(1109)] = 41385, - [SMALL_STATE(1110)] = 41408, - [SMALL_STATE(1111)] = 41423, - [SMALL_STATE(1112)] = 41446, - [SMALL_STATE(1113)] = 41469, - [SMALL_STATE(1114)] = 41484, - [SMALL_STATE(1115)] = 41498, - [SMALL_STATE(1116)] = 41516, - [SMALL_STATE(1117)] = 41530, - [SMALL_STATE(1118)] = 41548, - [SMALL_STATE(1119)] = 41566, - [SMALL_STATE(1120)] = 41584, - [SMALL_STATE(1121)] = 41598, - [SMALL_STATE(1122)] = 41612, - [SMALL_STATE(1123)] = 41626, - [SMALL_STATE(1124)] = 41640, - [SMALL_STATE(1125)] = 41654, - [SMALL_STATE(1126)] = 41668, - [SMALL_STATE(1127)] = 41687, - [SMALL_STATE(1128)] = 41698, - [SMALL_STATE(1129)] = 41715, - [SMALL_STATE(1130)] = 41732, - [SMALL_STATE(1131)] = 41749, - [SMALL_STATE(1132)] = 41760, - [SMALL_STATE(1133)] = 41771, - [SMALL_STATE(1134)] = 41782, - [SMALL_STATE(1135)] = 41793, - [SMALL_STATE(1136)] = 41812, - [SMALL_STATE(1137)] = 41823, - [SMALL_STATE(1138)] = 41834, - [SMALL_STATE(1139)] = 41845, - [SMALL_STATE(1140)] = 41864, - [SMALL_STATE(1141)] = 41881, - [SMALL_STATE(1142)] = 41892, - [SMALL_STATE(1143)] = 41903, - [SMALL_STATE(1144)] = 41922, - [SMALL_STATE(1145)] = 41933, - [SMALL_STATE(1146)] = 41950, - [SMALL_STATE(1147)] = 41967, - [SMALL_STATE(1148)] = 41986, - [SMALL_STATE(1149)] = 41997, - [SMALL_STATE(1150)] = 42013, - [SMALL_STATE(1151)] = 42029, - [SMALL_STATE(1152)] = 42045, - [SMALL_STATE(1153)] = 42059, - [SMALL_STATE(1154)] = 42075, - [SMALL_STATE(1155)] = 42091, - [SMALL_STATE(1156)] = 42107, - [SMALL_STATE(1157)] = 42123, - [SMALL_STATE(1158)] = 42139, - [SMALL_STATE(1159)] = 42155, - [SMALL_STATE(1160)] = 42171, - [SMALL_STATE(1161)] = 42187, - [SMALL_STATE(1162)] = 42201, - [SMALL_STATE(1163)] = 42217, - [SMALL_STATE(1164)] = 42233, - [SMALL_STATE(1165)] = 42249, - [SMALL_STATE(1166)] = 42265, - [SMALL_STATE(1167)] = 42281, - [SMALL_STATE(1168)] = 42294, - [SMALL_STATE(1169)] = 42307, - [SMALL_STATE(1170)] = 42320, - [SMALL_STATE(1171)] = 42333, - [SMALL_STATE(1172)] = 42346, - [SMALL_STATE(1173)] = 42359, - [SMALL_STATE(1174)] = 42372, - [SMALL_STATE(1175)] = 42385, - [SMALL_STATE(1176)] = 42398, - [SMALL_STATE(1177)] = 42411, - [SMALL_STATE(1178)] = 42424, - [SMALL_STATE(1179)] = 42437, - [SMALL_STATE(1180)] = 42450, - [SMALL_STATE(1181)] = 42463, - [SMALL_STATE(1182)] = 42474, - [SMALL_STATE(1183)] = 42487, - [SMALL_STATE(1184)] = 42500, - [SMALL_STATE(1185)] = 42513, - [SMALL_STATE(1186)] = 42526, - [SMALL_STATE(1187)] = 42539, - [SMALL_STATE(1188)] = 42552, - [SMALL_STATE(1189)] = 42565, - [SMALL_STATE(1190)] = 42574, - [SMALL_STATE(1191)] = 42587, - [SMALL_STATE(1192)] = 42600, - [SMALL_STATE(1193)] = 42613, - [SMALL_STATE(1194)] = 42626, - [SMALL_STATE(1195)] = 42639, - [SMALL_STATE(1196)] = 42652, - [SMALL_STATE(1197)] = 42663, - [SMALL_STATE(1198)] = 42676, - [SMALL_STATE(1199)] = 42689, - [SMALL_STATE(1200)] = 42702, - [SMALL_STATE(1201)] = 42715, - [SMALL_STATE(1202)] = 42728, - [SMALL_STATE(1203)] = 42741, - [SMALL_STATE(1204)] = 42754, - [SMALL_STATE(1205)] = 42767, - [SMALL_STATE(1206)] = 42780, - [SMALL_STATE(1207)] = 42793, - [SMALL_STATE(1208)] = 42806, - [SMALL_STATE(1209)] = 42819, - [SMALL_STATE(1210)] = 42832, - [SMALL_STATE(1211)] = 42845, - [SMALL_STATE(1212)] = 42858, - [SMALL_STATE(1213)] = 42871, - [SMALL_STATE(1214)] = 42884, - [SMALL_STATE(1215)] = 42897, - [SMALL_STATE(1216)] = 42910, - [SMALL_STATE(1217)] = 42923, - [SMALL_STATE(1218)] = 42936, - [SMALL_STATE(1219)] = 42949, - [SMALL_STATE(1220)] = 42962, - [SMALL_STATE(1221)] = 42975, - [SMALL_STATE(1222)] = 42988, - [SMALL_STATE(1223)] = 43001, - [SMALL_STATE(1224)] = 43014, - [SMALL_STATE(1225)] = 43027, - [SMALL_STATE(1226)] = 43036, - [SMALL_STATE(1227)] = 43049, - [SMALL_STATE(1228)] = 43062, - [SMALL_STATE(1229)] = 43075, - [SMALL_STATE(1230)] = 43085, - [SMALL_STATE(1231)] = 43095, - [SMALL_STATE(1232)] = 43105, - [SMALL_STATE(1233)] = 43113, - [SMALL_STATE(1234)] = 43121, - [SMALL_STATE(1235)] = 43129, - [SMALL_STATE(1236)] = 43137, - [SMALL_STATE(1237)] = 43147, - [SMALL_STATE(1238)] = 43157, - [SMALL_STATE(1239)] = 43165, - [SMALL_STATE(1240)] = 43175, - [SMALL_STATE(1241)] = 43185, - [SMALL_STATE(1242)] = 43195, - [SMALL_STATE(1243)] = 43205, - [SMALL_STATE(1244)] = 43215, - [SMALL_STATE(1245)] = 43225, - [SMALL_STATE(1246)] = 43235, - [SMALL_STATE(1247)] = 43245, - [SMALL_STATE(1248)] = 43255, - [SMALL_STATE(1249)] = 43263, - [SMALL_STATE(1250)] = 43273, - [SMALL_STATE(1251)] = 43283, - [SMALL_STATE(1252)] = 43293, - [SMALL_STATE(1253)] = 43303, - [SMALL_STATE(1254)] = 43313, - [SMALL_STATE(1255)] = 43323, - [SMALL_STATE(1256)] = 43331, - [SMALL_STATE(1257)] = 43341, - [SMALL_STATE(1258)] = 43351, - [SMALL_STATE(1259)] = 43361, - [SMALL_STATE(1260)] = 43371, - [SMALL_STATE(1261)] = 43381, - [SMALL_STATE(1262)] = 43391, - [SMALL_STATE(1263)] = 43399, - [SMALL_STATE(1264)] = 43409, - [SMALL_STATE(1265)] = 43419, - [SMALL_STATE(1266)] = 43429, - [SMALL_STATE(1267)] = 43437, - [SMALL_STATE(1268)] = 43445, - [SMALL_STATE(1269)] = 43455, - [SMALL_STATE(1270)] = 43463, - [SMALL_STATE(1271)] = 43471, - [SMALL_STATE(1272)] = 43481, - [SMALL_STATE(1273)] = 43491, - [SMALL_STATE(1274)] = 43501, - [SMALL_STATE(1275)] = 43511, - [SMALL_STATE(1276)] = 43521, - [SMALL_STATE(1277)] = 43529, - [SMALL_STATE(1278)] = 43539, - [SMALL_STATE(1279)] = 43547, - [SMALL_STATE(1280)] = 43557, - [SMALL_STATE(1281)] = 43567, - [SMALL_STATE(1282)] = 43577, - [SMALL_STATE(1283)] = 43585, - [SMALL_STATE(1284)] = 43593, - [SMALL_STATE(1285)] = 43601, - [SMALL_STATE(1286)] = 43611, - [SMALL_STATE(1287)] = 43621, - [SMALL_STATE(1288)] = 43629, - [SMALL_STATE(1289)] = 43637, - [SMALL_STATE(1290)] = 43647, - [SMALL_STATE(1291)] = 43657, - [SMALL_STATE(1292)] = 43664, - [SMALL_STATE(1293)] = 43671, - [SMALL_STATE(1294)] = 43678, - [SMALL_STATE(1295)] = 43685, - [SMALL_STATE(1296)] = 43692, - [SMALL_STATE(1297)] = 43699, - [SMALL_STATE(1298)] = 43706, - [SMALL_STATE(1299)] = 43713, - [SMALL_STATE(1300)] = 43720, - [SMALL_STATE(1301)] = 43727, - [SMALL_STATE(1302)] = 43734, - [SMALL_STATE(1303)] = 43741, - [SMALL_STATE(1304)] = 43748, - [SMALL_STATE(1305)] = 43755, - [SMALL_STATE(1306)] = 43762, - [SMALL_STATE(1307)] = 43769, - [SMALL_STATE(1308)] = 43776, - [SMALL_STATE(1309)] = 43783, - [SMALL_STATE(1310)] = 43790, - [SMALL_STATE(1311)] = 43797, - [SMALL_STATE(1312)] = 43804, - [SMALL_STATE(1313)] = 43811, - [SMALL_STATE(1314)] = 43818, - [SMALL_STATE(1315)] = 43825, - [SMALL_STATE(1316)] = 43832, - [SMALL_STATE(1317)] = 43839, - [SMALL_STATE(1318)] = 43846, - [SMALL_STATE(1319)] = 43853, - [SMALL_STATE(1320)] = 43860, - [SMALL_STATE(1321)] = 43867, - [SMALL_STATE(1322)] = 43874, - [SMALL_STATE(1323)] = 43881, - [SMALL_STATE(1324)] = 43888, - [SMALL_STATE(1325)] = 43895, - [SMALL_STATE(1326)] = 43902, - [SMALL_STATE(1327)] = 43909, - [SMALL_STATE(1328)] = 43916, - [SMALL_STATE(1329)] = 43923, - [SMALL_STATE(1330)] = 43930, - [SMALL_STATE(1331)] = 43937, - [SMALL_STATE(1332)] = 43944, - [SMALL_STATE(1333)] = 43951, - [SMALL_STATE(1334)] = 43958, - [SMALL_STATE(1335)] = 43965, - [SMALL_STATE(1336)] = 43972, - [SMALL_STATE(1337)] = 43979, - [SMALL_STATE(1338)] = 43986, - [SMALL_STATE(1339)] = 43993, - [SMALL_STATE(1340)] = 44000, - [SMALL_STATE(1341)] = 44007, - [SMALL_STATE(1342)] = 44014, - [SMALL_STATE(1343)] = 44021, - [SMALL_STATE(1344)] = 44028, - [SMALL_STATE(1345)] = 44035, - [SMALL_STATE(1346)] = 44042, - [SMALL_STATE(1347)] = 44049, - [SMALL_STATE(1348)] = 44056, - [SMALL_STATE(1349)] = 44063, - [SMALL_STATE(1350)] = 44070, - [SMALL_STATE(1351)] = 44077, - [SMALL_STATE(1352)] = 44084, - [SMALL_STATE(1353)] = 44091, - [SMALL_STATE(1354)] = 44098, - [SMALL_STATE(1355)] = 44105, - [SMALL_STATE(1356)] = 44112, - [SMALL_STATE(1357)] = 44119, - [SMALL_STATE(1358)] = 44126, - [SMALL_STATE(1359)] = 44133, - [SMALL_STATE(1360)] = 44140, - [SMALL_STATE(1361)] = 44147, - [SMALL_STATE(1362)] = 44154, - [SMALL_STATE(1363)] = 44161, - [SMALL_STATE(1364)] = 44168, - [SMALL_STATE(1365)] = 44175, - [SMALL_STATE(1366)] = 44182, - [SMALL_STATE(1367)] = 44189, - [SMALL_STATE(1368)] = 44196, - [SMALL_STATE(1369)] = 44203, - [SMALL_STATE(1370)] = 44210, - [SMALL_STATE(1371)] = 44217, - [SMALL_STATE(1372)] = 44224, - [SMALL_STATE(1373)] = 44231, - [SMALL_STATE(1374)] = 44238, - [SMALL_STATE(1375)] = 44245, - [SMALL_STATE(1376)] = 44252, - [SMALL_STATE(1377)] = 44259, - [SMALL_STATE(1378)] = 44266, - [SMALL_STATE(1379)] = 44273, - [SMALL_STATE(1380)] = 44280, - [SMALL_STATE(1381)] = 44287, - [SMALL_STATE(1382)] = 44294, - [SMALL_STATE(1383)] = 44301, - [SMALL_STATE(1384)] = 44308, - [SMALL_STATE(1385)] = 44315, - [SMALL_STATE(1386)] = 44322, - [SMALL_STATE(1387)] = 44329, - [SMALL_STATE(1388)] = 44336, - [SMALL_STATE(1389)] = 44343, - [SMALL_STATE(1390)] = 44350, - [SMALL_STATE(1391)] = 44357, - [SMALL_STATE(1392)] = 44364, - [SMALL_STATE(1393)] = 44371, - [SMALL_STATE(1394)] = 44378, - [SMALL_STATE(1395)] = 44385, - [SMALL_STATE(1396)] = 44392, - [SMALL_STATE(1397)] = 44399, - [SMALL_STATE(1398)] = 44406, - [SMALL_STATE(1399)] = 44413, - [SMALL_STATE(1400)] = 44420, - [SMALL_STATE(1401)] = 44427, - [SMALL_STATE(1402)] = 44434, - [SMALL_STATE(1403)] = 44441, - [SMALL_STATE(1404)] = 44448, - [SMALL_STATE(1405)] = 44455, - [SMALL_STATE(1406)] = 44462, - [SMALL_STATE(1407)] = 44469, - [SMALL_STATE(1408)] = 44476, - [SMALL_STATE(1409)] = 44483, - [SMALL_STATE(1410)] = 44490, - [SMALL_STATE(1411)] = 44497, - [SMALL_STATE(1412)] = 44504, - [SMALL_STATE(1413)] = 44511, - [SMALL_STATE(1414)] = 44518, - [SMALL_STATE(1415)] = 44525, - [SMALL_STATE(1416)] = 44532, - [SMALL_STATE(1417)] = 44539, - [SMALL_STATE(1418)] = 44546, - [SMALL_STATE(1419)] = 44553, - [SMALL_STATE(1420)] = 44560, - [SMALL_STATE(1421)] = 44567, - [SMALL_STATE(1422)] = 44574, - [SMALL_STATE(1423)] = 44581, - [SMALL_STATE(1424)] = 44588, - [SMALL_STATE(1425)] = 44595, - [SMALL_STATE(1426)] = 44602, - [SMALL_STATE(1427)] = 44609, - [SMALL_STATE(1428)] = 44616, - [SMALL_STATE(1429)] = 44623, - [SMALL_STATE(1430)] = 44630, - [SMALL_STATE(1431)] = 44637, - [SMALL_STATE(1432)] = 44644, - [SMALL_STATE(1433)] = 44651, - [SMALL_STATE(1434)] = 44658, - [SMALL_STATE(1435)] = 44665, - [SMALL_STATE(1436)] = 44672, - [SMALL_STATE(1437)] = 44679, - [SMALL_STATE(1438)] = 44686, - [SMALL_STATE(1439)] = 44693, - [SMALL_STATE(1440)] = 44700, - [SMALL_STATE(1441)] = 44707, - [SMALL_STATE(1442)] = 44714, - [SMALL_STATE(1443)] = 44721, - [SMALL_STATE(1444)] = 44728, - [SMALL_STATE(1445)] = 44735, - [SMALL_STATE(1446)] = 44742, - [SMALL_STATE(1447)] = 44749, - [SMALL_STATE(1448)] = 44756, - [SMALL_STATE(1449)] = 44763, - [SMALL_STATE(1450)] = 44770, - [SMALL_STATE(1451)] = 44777, - [SMALL_STATE(1452)] = 44784, - [SMALL_STATE(1453)] = 44791, - [SMALL_STATE(1454)] = 44798, - [SMALL_STATE(1455)] = 44805, - [SMALL_STATE(1456)] = 44812, - [SMALL_STATE(1457)] = 44819, - [SMALL_STATE(1458)] = 44826, - [SMALL_STATE(1459)] = 44833, - [SMALL_STATE(1460)] = 44840, - [SMALL_STATE(1461)] = 44847, - [SMALL_STATE(1462)] = 44854, - [SMALL_STATE(1463)] = 44861, - [SMALL_STATE(1464)] = 44868, - [SMALL_STATE(1465)] = 44875, - [SMALL_STATE(1466)] = 44882, - [SMALL_STATE(1467)] = 44889, - [SMALL_STATE(1468)] = 44896, - [SMALL_STATE(1469)] = 44903, - [SMALL_STATE(1470)] = 44910, - [SMALL_STATE(1471)] = 44917, - [SMALL_STATE(1472)] = 44924, - [SMALL_STATE(1473)] = 44931, - [SMALL_STATE(1474)] = 44938, - [SMALL_STATE(1475)] = 44945, - [SMALL_STATE(1476)] = 44952, - [SMALL_STATE(1477)] = 44959, - [SMALL_STATE(1478)] = 44966, - [SMALL_STATE(1479)] = 44973, - [SMALL_STATE(1480)] = 44980, - [SMALL_STATE(1481)] = 44987, - [SMALL_STATE(1482)] = 44994, - [SMALL_STATE(1483)] = 45001, - [SMALL_STATE(1484)] = 45008, - [SMALL_STATE(1485)] = 45015, - [SMALL_STATE(1486)] = 45022, - [SMALL_STATE(1487)] = 45029, - [SMALL_STATE(1488)] = 45036, + [SMALL_STATE(386)] = 76, + [SMALL_STATE(387)] = 197, + [SMALL_STATE(388)] = 307, + [SMALL_STATE(389)] = 417, + [SMALL_STATE(390)] = 525, + [SMALL_STATE(391)] = 635, + [SMALL_STATE(392)] = 745, + [SMALL_STATE(393)] = 855, + [SMALL_STATE(394)] = 965, + [SMALL_STATE(395)] = 1075, + [SMALL_STATE(396)] = 1185, + [SMALL_STATE(397)] = 1295, + [SMALL_STATE(398)] = 1405, + [SMALL_STATE(399)] = 1515, + [SMALL_STATE(400)] = 1625, + [SMALL_STATE(401)] = 1735, + [SMALL_STATE(402)] = 1845, + [SMALL_STATE(403)] = 1922, + [SMALL_STATE(404)] = 2023, + [SMALL_STATE(405)] = 2128, + [SMALL_STATE(406)] = 2229, + [SMALL_STATE(407)] = 2306, + [SMALL_STATE(408)] = 2407, + [SMALL_STATE(409)] = 2508, + [SMALL_STATE(410)] = 2587, + [SMALL_STATE(411)] = 2666, + [SMALL_STATE(412)] = 2767, + [SMALL_STATE(413)] = 2868, + [SMALL_STATE(414)] = 2969, + [SMALL_STATE(415)] = 3046, + [SMALL_STATE(416)] = 3147, + [SMALL_STATE(417)] = 3252, + [SMALL_STATE(418)] = 3331, + [SMALL_STATE(419)] = 3410, + [SMALL_STATE(420)] = 3511, + [SMALL_STATE(421)] = 3612, + [SMALL_STATE(422)] = 3689, + [SMALL_STATE(423)] = 3763, + [SMALL_STATE(424)] = 3865, + [SMALL_STATE(425)] = 3967, + [SMALL_STATE(426)] = 4067, + [SMALL_STATE(427)] = 4167, + [SMALL_STATE(428)] = 4267, + [SMALL_STATE(429)] = 4367, + [SMALL_STATE(430)] = 4467, + [SMALL_STATE(431)] = 4567, + [SMALL_STATE(432)] = 4672, + [SMALL_STATE(433)] = 4733, + [SMALL_STATE(434)] = 4826, + [SMALL_STATE(435)] = 4887, + [SMALL_STATE(436)] = 4980, + [SMALL_STATE(437)] = 5041, + [SMALL_STATE(438)] = 5134, + [SMALL_STATE(439)] = 5227, + [SMALL_STATE(440)] = 5317, + [SMALL_STATE(441)] = 5407, + [SMALL_STATE(442)] = 5497, + [SMALL_STATE(443)] = 5587, + [SMALL_STATE(444)] = 5677, + [SMALL_STATE(445)] = 5767, + [SMALL_STATE(446)] = 5857, + [SMALL_STATE(447)] = 5947, + [SMALL_STATE(448)] = 6037, + [SMALL_STATE(449)] = 6127, + [SMALL_STATE(450)] = 6217, + [SMALL_STATE(451)] = 6307, + [SMALL_STATE(452)] = 6397, + [SMALL_STATE(453)] = 6487, + [SMALL_STATE(454)] = 6577, + [SMALL_STATE(455)] = 6667, + [SMALL_STATE(456)] = 6757, + [SMALL_STATE(457)] = 6847, + [SMALL_STATE(458)] = 6937, + [SMALL_STATE(459)] = 7027, + [SMALL_STATE(460)] = 7117, + [SMALL_STATE(461)] = 7207, + [SMALL_STATE(462)] = 7297, + [SMALL_STATE(463)] = 7387, + [SMALL_STATE(464)] = 7477, + [SMALL_STATE(465)] = 7567, + [SMALL_STATE(466)] = 7657, + [SMALL_STATE(467)] = 7747, + [SMALL_STATE(468)] = 7837, + [SMALL_STATE(469)] = 7927, + [SMALL_STATE(470)] = 8017, + [SMALL_STATE(471)] = 8107, + [SMALL_STATE(472)] = 8197, + [SMALL_STATE(473)] = 8287, + [SMALL_STATE(474)] = 8377, + [SMALL_STATE(475)] = 8467, + [SMALL_STATE(476)] = 8557, + [SMALL_STATE(477)] = 8647, + [SMALL_STATE(478)] = 8737, + [SMALL_STATE(479)] = 8827, + [SMALL_STATE(480)] = 8917, + [SMALL_STATE(481)] = 9007, + [SMALL_STATE(482)] = 9097, + [SMALL_STATE(483)] = 9187, + [SMALL_STATE(484)] = 9277, + [SMALL_STATE(485)] = 9367, + [SMALL_STATE(486)] = 9454, + [SMALL_STATE(487)] = 9541, + [SMALL_STATE(488)] = 9628, + [SMALL_STATE(489)] = 9715, + [SMALL_STATE(490)] = 9770, + [SMALL_STATE(491)] = 9857, + [SMALL_STATE(492)] = 9944, + [SMALL_STATE(493)] = 10031, + [SMALL_STATE(494)] = 10086, + [SMALL_STATE(495)] = 10173, + [SMALL_STATE(496)] = 10260, + [SMALL_STATE(497)] = 10347, + [SMALL_STATE(498)] = 10434, + [SMALL_STATE(499)] = 10521, + [SMALL_STATE(500)] = 10608, + [SMALL_STATE(501)] = 10695, + [SMALL_STATE(502)] = 10782, + [SMALL_STATE(503)] = 10869, + [SMALL_STATE(504)] = 10956, + [SMALL_STATE(505)] = 11043, + [SMALL_STATE(506)] = 11130, + [SMALL_STATE(507)] = 11214, + [SMALL_STATE(508)] = 11298, + [SMALL_STATE(509)] = 11382, + [SMALL_STATE(510)] = 11466, + [SMALL_STATE(511)] = 11550, + [SMALL_STATE(512)] = 11634, + [SMALL_STATE(513)] = 11718, + [SMALL_STATE(514)] = 11802, + [SMALL_STATE(515)] = 11886, + [SMALL_STATE(516)] = 11970, + [SMALL_STATE(517)] = 12054, + [SMALL_STATE(518)] = 12138, + [SMALL_STATE(519)] = 12222, + [SMALL_STATE(520)] = 12306, + [SMALL_STATE(521)] = 12390, + [SMALL_STATE(522)] = 12474, + [SMALL_STATE(523)] = 12558, + [SMALL_STATE(524)] = 12642, + [SMALL_STATE(525)] = 12726, + [SMALL_STATE(526)] = 12810, + [SMALL_STATE(527)] = 12894, + [SMALL_STATE(528)] = 12978, + [SMALL_STATE(529)] = 13062, + [SMALL_STATE(530)] = 13146, + [SMALL_STATE(531)] = 13230, + [SMALL_STATE(532)] = 13314, + [SMALL_STATE(533)] = 13398, + [SMALL_STATE(534)] = 13482, + [SMALL_STATE(535)] = 13566, + [SMALL_STATE(536)] = 13650, + [SMALL_STATE(537)] = 13734, + [SMALL_STATE(538)] = 13818, + [SMALL_STATE(539)] = 13902, + [SMALL_STATE(540)] = 13986, + [SMALL_STATE(541)] = 14070, + [SMALL_STATE(542)] = 14154, + [SMALL_STATE(543)] = 14238, + [SMALL_STATE(544)] = 14322, + [SMALL_STATE(545)] = 14406, + [SMALL_STATE(546)] = 14490, + [SMALL_STATE(547)] = 14574, + [SMALL_STATE(548)] = 14658, + [SMALL_STATE(549)] = 14742, + [SMALL_STATE(550)] = 14826, + [SMALL_STATE(551)] = 14910, + [SMALL_STATE(552)] = 14994, + [SMALL_STATE(553)] = 15078, + [SMALL_STATE(554)] = 15162, + [SMALL_STATE(555)] = 15246, + [SMALL_STATE(556)] = 15330, + [SMALL_STATE(557)] = 15414, + [SMALL_STATE(558)] = 15498, + [SMALL_STATE(559)] = 15582, + [SMALL_STATE(560)] = 15666, + [SMALL_STATE(561)] = 15750, + [SMALL_STATE(562)] = 15834, + [SMALL_STATE(563)] = 15918, + [SMALL_STATE(564)] = 16002, + [SMALL_STATE(565)] = 16086, + [SMALL_STATE(566)] = 16170, + [SMALL_STATE(567)] = 16254, + [SMALL_STATE(568)] = 16338, + [SMALL_STATE(569)] = 16422, + [SMALL_STATE(570)] = 16506, + [SMALL_STATE(571)] = 16590, + [SMALL_STATE(572)] = 16674, + [SMALL_STATE(573)] = 16758, + [SMALL_STATE(574)] = 16842, + [SMALL_STATE(575)] = 16926, + [SMALL_STATE(576)] = 17010, + [SMALL_STATE(577)] = 17094, + [SMALL_STATE(578)] = 17178, + [SMALL_STATE(579)] = 17262, + [SMALL_STATE(580)] = 17346, + [SMALL_STATE(581)] = 17430, + [SMALL_STATE(582)] = 17514, + [SMALL_STATE(583)] = 17578, + [SMALL_STATE(584)] = 17629, + [SMALL_STATE(585)] = 17679, + [SMALL_STATE(586)] = 17745, + [SMALL_STATE(587)] = 17795, + [SMALL_STATE(588)] = 17855, + [SMALL_STATE(589)] = 17939, + [SMALL_STATE(590)] = 17989, + [SMALL_STATE(591)] = 18049, + [SMALL_STATE(592)] = 18109, + [SMALL_STATE(593)] = 18159, + [SMALL_STATE(594)] = 18209, + [SMALL_STATE(595)] = 18259, + [SMALL_STATE(596)] = 18309, + [SMALL_STATE(597)] = 18359, + [SMALL_STATE(598)] = 18409, + [SMALL_STATE(599)] = 18473, + [SMALL_STATE(600)] = 18539, + [SMALL_STATE(601)] = 18589, + [SMALL_STATE(602)] = 18659, + [SMALL_STATE(603)] = 18709, + [SMALL_STATE(604)] = 18759, + [SMALL_STATE(605)] = 18831, + [SMALL_STATE(606)] = 18881, + [SMALL_STATE(607)] = 18931, + [SMALL_STATE(608)] = 19005, + [SMALL_STATE(609)] = 19081, + [SMALL_STATE(610)] = 19159, + [SMALL_STATE(611)] = 19239, + [SMALL_STATE(612)] = 19289, + [SMALL_STATE(613)] = 19351, + [SMALL_STATE(614)] = 19409, + [SMALL_STATE(615)] = 19491, + [SMALL_STATE(616)] = 19541, + [SMALL_STATE(617)] = 19591, + [SMALL_STATE(618)] = 19641, + [SMALL_STATE(619)] = 19725, + [SMALL_STATE(620)] = 19785, + [SMALL_STATE(621)] = 19869, + [SMALL_STATE(622)] = 19950, + [SMALL_STATE(623)] = 19999, + [SMALL_STATE(624)] = 20048, + [SMALL_STATE(625)] = 20101, + [SMALL_STATE(626)] = 20150, + [SMALL_STATE(627)] = 20203, + [SMALL_STATE(628)] = 20256, + [SMALL_STATE(629)] = 20309, + [SMALL_STATE(630)] = 20362, + [SMALL_STATE(631)] = 20442, + [SMALL_STATE(632)] = 20516, + [SMALL_STATE(633)] = 20574, + [SMALL_STATE(634)] = 20650, + [SMALL_STATE(635)] = 20706, + [SMALL_STATE(636)] = 20780, + [SMALL_STATE(637)] = 20836, + [SMALL_STATE(638)] = 20908, + [SMALL_STATE(639)] = 20964, + [SMALL_STATE(640)] = 21034, + [SMALL_STATE(641)] = 21108, + [SMALL_STATE(642)] = 21176, + [SMALL_STATE(643)] = 21238, + [SMALL_STATE(644)] = 21298, + [SMALL_STATE(645)] = 21372, + [SMALL_STATE(646)] = 21438, + [SMALL_STATE(647)] = 21494, + [SMALL_STATE(648)] = 21572, + [SMALL_STATE(649)] = 21634, + [SMALL_STATE(650)] = 21692, + [SMALL_STATE(651)] = 21772, + [SMALL_STATE(652)] = 21826, + [SMALL_STATE(653)] = 21900, + [SMALL_STATE(654)] = 21949, + [SMALL_STATE(655)] = 22020, + [SMALL_STATE(656)] = 22065, + [SMALL_STATE(657)] = 22110, + [SMALL_STATE(658)] = 22155, + [SMALL_STATE(659)] = 22203, + [SMALL_STATE(660)] = 22279, + [SMALL_STATE(661)] = 22321, + [SMALL_STATE(662)] = 22362, + [SMALL_STATE(663)] = 22402, + [SMALL_STATE(664)] = 22441, + [SMALL_STATE(665)] = 22498, + [SMALL_STATE(666)] = 22537, + [SMALL_STATE(667)] = 22576, + [SMALL_STATE(668)] = 22615, + [SMALL_STATE(669)] = 22654, + [SMALL_STATE(670)] = 22693, + [SMALL_STATE(671)] = 22732, + [SMALL_STATE(672)] = 22771, + [SMALL_STATE(673)] = 22824, + [SMALL_STATE(674)] = 22863, + [SMALL_STATE(675)] = 22902, + [SMALL_STATE(676)] = 22941, + [SMALL_STATE(677)] = 23010, + [SMALL_STATE(678)] = 23077, + [SMALL_STATE(679)] = 23150, + [SMALL_STATE(680)] = 23217, + [SMALL_STATE(681)] = 23282, + [SMALL_STATE(682)] = 23345, + [SMALL_STATE(683)] = 23384, + [SMALL_STATE(684)] = 23445, + [SMALL_STATE(685)] = 23502, + [SMALL_STATE(686)] = 23541, + [SMALL_STATE(687)] = 23614, + [SMALL_STATE(688)] = 23653, + [SMALL_STATE(689)] = 23708, + [SMALL_STATE(690)] = 23747, + [SMALL_STATE(691)] = 23786, + [SMALL_STATE(692)] = 23825, + [SMALL_STATE(693)] = 23864, + [SMALL_STATE(694)] = 23903, + [SMALL_STATE(695)] = 23974, + [SMALL_STATE(696)] = 24013, + [SMALL_STATE(697)] = 24052, + [SMALL_STATE(698)] = 24091, + [SMALL_STATE(699)] = 24130, + [SMALL_STATE(700)] = 24169, + [SMALL_STATE(701)] = 24219, + [SMALL_STATE(702)] = 24269, + [SMALL_STATE(703)] = 24319, + [SMALL_STATE(704)] = 24357, + [SMALL_STATE(705)] = 24407, + [SMALL_STATE(706)] = 24445, + [SMALL_STATE(707)] = 24482, + [SMALL_STATE(708)] = 24519, + [SMALL_STATE(709)] = 24556, + [SMALL_STATE(710)] = 24593, + [SMALL_STATE(711)] = 24630, + [SMALL_STATE(712)] = 24667, + [SMALL_STATE(713)] = 24704, + [SMALL_STATE(714)] = 24741, + [SMALL_STATE(715)] = 24778, + [SMALL_STATE(716)] = 24815, + [SMALL_STATE(717)] = 24888, + [SMALL_STATE(718)] = 24925, + [SMALL_STATE(719)] = 24962, + [SMALL_STATE(720)] = 24999, + [SMALL_STATE(721)] = 25036, + [SMALL_STATE(722)] = 25073, + [SMALL_STATE(723)] = 25110, + [SMALL_STATE(724)] = 25151, + [SMALL_STATE(725)] = 25188, + [SMALL_STATE(726)] = 25225, + [SMALL_STATE(727)] = 25262, + [SMALL_STATE(728)] = 25299, + [SMALL_STATE(729)] = 25336, + [SMALL_STATE(730)] = 25373, + [SMALL_STATE(731)] = 25410, + [SMALL_STATE(732)] = 25447, + [SMALL_STATE(733)] = 25488, + [SMALL_STATE(734)] = 25563, + [SMALL_STATE(735)] = 25600, + [SMALL_STATE(736)] = 25675, + [SMALL_STATE(737)] = 25716, + [SMALL_STATE(738)] = 25757, + [SMALL_STATE(739)] = 25794, + [SMALL_STATE(740)] = 25831, + [SMALL_STATE(741)] = 25868, + [SMALL_STATE(742)] = 25905, + [SMALL_STATE(743)] = 25942, + [SMALL_STATE(744)] = 26017, + [SMALL_STATE(745)] = 26058, + [SMALL_STATE(746)] = 26095, + [SMALL_STATE(747)] = 26132, + [SMALL_STATE(748)] = 26169, + [SMALL_STATE(749)] = 26206, + [SMALL_STATE(750)] = 26251, + [SMALL_STATE(751)] = 26288, + [SMALL_STATE(752)] = 26325, + [SMALL_STATE(753)] = 26362, + [SMALL_STATE(754)] = 26399, + [SMALL_STATE(755)] = 26436, + [SMALL_STATE(756)] = 26511, + [SMALL_STATE(757)] = 26548, + [SMALL_STATE(758)] = 26618, + [SMALL_STATE(759)] = 26688, + [SMALL_STATE(760)] = 26760, + [SMALL_STATE(761)] = 26832, + [SMALL_STATE(762)] = 26904, + [SMALL_STATE(763)] = 26976, + [SMALL_STATE(764)] = 27048, + [SMALL_STATE(765)] = 27120, + [SMALL_STATE(766)] = 27192, + [SMALL_STATE(767)] = 27264, + [SMALL_STATE(768)] = 27336, + [SMALL_STATE(769)] = 27408, + [SMALL_STATE(770)] = 27480, + [SMALL_STATE(771)] = 27552, + [SMALL_STATE(772)] = 27624, + [SMALL_STATE(773)] = 27696, + [SMALL_STATE(774)] = 27768, + [SMALL_STATE(775)] = 27840, + [SMALL_STATE(776)] = 27912, + [SMALL_STATE(777)] = 27984, + [SMALL_STATE(778)] = 28056, + [SMALL_STATE(779)] = 28128, + [SMALL_STATE(780)] = 28198, + [SMALL_STATE(781)] = 28270, + [SMALL_STATE(782)] = 28342, + [SMALL_STATE(783)] = 28412, + [SMALL_STATE(784)] = 28484, + [SMALL_STATE(785)] = 28556, + [SMALL_STATE(786)] = 28628, + [SMALL_STATE(787)] = 28700, + [SMALL_STATE(788)] = 28772, + [SMALL_STATE(789)] = 28844, + [SMALL_STATE(790)] = 28916, + [SMALL_STATE(791)] = 28988, + [SMALL_STATE(792)] = 29060, + [SMALL_STATE(793)] = 29132, + [SMALL_STATE(794)] = 29204, + [SMALL_STATE(795)] = 29276, + [SMALL_STATE(796)] = 29348, + [SMALL_STATE(797)] = 29420, + [SMALL_STATE(798)] = 29492, + [SMALL_STATE(799)] = 29564, + [SMALL_STATE(800)] = 29636, + [SMALL_STATE(801)] = 29708, + [SMALL_STATE(802)] = 29780, + [SMALL_STATE(803)] = 29852, + [SMALL_STATE(804)] = 29922, + [SMALL_STATE(805)] = 29982, + [SMALL_STATE(806)] = 30052, + [SMALL_STATE(807)] = 30124, + [SMALL_STATE(808)] = 30196, + [SMALL_STATE(809)] = 30268, + [SMALL_STATE(810)] = 30340, + [SMALL_STATE(811)] = 30412, + [SMALL_STATE(812)] = 30484, + [SMALL_STATE(813)] = 30556, + [SMALL_STATE(814)] = 30628, + [SMALL_STATE(815)] = 30697, + [SMALL_STATE(816)] = 30766, + [SMALL_STATE(817)] = 30833, + [SMALL_STATE(818)] = 30884, + [SMALL_STATE(819)] = 30941, + [SMALL_STATE(820)] = 31010, + [SMALL_STATE(821)] = 31079, + [SMALL_STATE(822)] = 31148, + [SMALL_STATE(823)] = 31217, + [SMALL_STATE(824)] = 31286, + [SMALL_STATE(825)] = 31355, + [SMALL_STATE(826)] = 31408, + [SMALL_STATE(827)] = 31477, + [SMALL_STATE(828)] = 31546, + [SMALL_STATE(829)] = 31615, + [SMALL_STATE(830)] = 31684, + [SMALL_STATE(831)] = 31753, + [SMALL_STATE(832)] = 31810, + [SMALL_STATE(833)] = 31863, + [SMALL_STATE(834)] = 31920, + [SMALL_STATE(835)] = 31977, + [SMALL_STATE(836)] = 32036, + [SMALL_STATE(837)] = 32097, + [SMALL_STATE(838)] = 32154, + [SMALL_STATE(839)] = 32223, + [SMALL_STATE(840)] = 32286, + [SMALL_STATE(841)] = 32343, + [SMALL_STATE(842)] = 32412, + [SMALL_STATE(843)] = 32481, + [SMALL_STATE(844)] = 32538, + [SMALL_STATE(845)] = 32595, + [SMALL_STATE(846)] = 32664, + [SMALL_STATE(847)] = 32733, + [SMALL_STATE(848)] = 32802, + [SMALL_STATE(849)] = 32865, + [SMALL_STATE(850)] = 32922, + [SMALL_STATE(851)] = 32991, + [SMALL_STATE(852)] = 33048, + [SMALL_STATE(853)] = 33105, + [SMALL_STATE(854)] = 33170, + [SMALL_STATE(855)] = 33239, + [SMALL_STATE(856)] = 33296, + [SMALL_STATE(857)] = 33345, + [SMALL_STATE(858)] = 33414, + [SMALL_STATE(859)] = 33483, + [SMALL_STATE(860)] = 33540, + [SMALL_STATE(861)] = 33609, + [SMALL_STATE(862)] = 33657, + [SMALL_STATE(863)] = 33705, + [SMALL_STATE(864)] = 33753, + [SMALL_STATE(865)] = 33801, + [SMALL_STATE(866)] = 33854, + [SMALL_STATE(867)] = 33891, + [SMALL_STATE(868)] = 33944, + [SMALL_STATE(869)] = 33997, + [SMALL_STATE(870)] = 34050, + [SMALL_STATE(871)] = 34087, + [SMALL_STATE(872)] = 34124, + [SMALL_STATE(873)] = 34161, + [SMALL_STATE(874)] = 34198, + [SMALL_STATE(875)] = 34234, + [SMALL_STATE(876)] = 34284, + [SMALL_STATE(877)] = 34334, + [SMALL_STATE(878)] = 34384, + [SMALL_STATE(879)] = 34434, + [SMALL_STATE(880)] = 34484, + [SMALL_STATE(881)] = 34534, + [SMALL_STATE(882)] = 34584, + [SMALL_STATE(883)] = 34634, + [SMALL_STATE(884)] = 34684, + [SMALL_STATE(885)] = 34715, + [SMALL_STATE(886)] = 34746, + [SMALL_STATE(887)] = 34777, + [SMALL_STATE(888)] = 34810, + [SMALL_STATE(889)] = 34841, + [SMALL_STATE(890)] = 34872, + [SMALL_STATE(891)] = 34903, + [SMALL_STATE(892)] = 34934, + [SMALL_STATE(893)] = 34965, + [SMALL_STATE(894)] = 34996, + [SMALL_STATE(895)] = 35027, + [SMALL_STATE(896)] = 35058, + [SMALL_STATE(897)] = 35089, + [SMALL_STATE(898)] = 35120, + [SMALL_STATE(899)] = 35151, + [SMALL_STATE(900)] = 35182, + [SMALL_STATE(901)] = 35213, + [SMALL_STATE(902)] = 35244, + [SMALL_STATE(903)] = 35275, + [SMALL_STATE(904)] = 35306, + [SMALL_STATE(905)] = 35337, + [SMALL_STATE(906)] = 35368, + [SMALL_STATE(907)] = 35402, + [SMALL_STATE(908)] = 35437, + [SMALL_STATE(909)] = 35492, + [SMALL_STATE(910)] = 35547, + [SMALL_STATE(911)] = 35580, + [SMALL_STATE(912)] = 35623, + [SMALL_STATE(913)] = 35666, + [SMALL_STATE(914)] = 35706, + [SMALL_STATE(915)] = 35746, + [SMALL_STATE(916)] = 35794, + [SMALL_STATE(917)] = 35822, + [SMALL_STATE(918)] = 35868, + [SMALL_STATE(919)] = 35896, + [SMALL_STATE(920)] = 35942, + [SMALL_STATE(921)] = 35986, + [SMALL_STATE(922)] = 36028, + [SMALL_STATE(923)] = 36068, + [SMALL_STATE(924)] = 36108, + [SMALL_STATE(925)] = 36144, + [SMALL_STATE(926)] = 36178, + [SMALL_STATE(927)] = 36218, + [SMALL_STATE(928)] = 36246, + [SMALL_STATE(929)] = 36286, + [SMALL_STATE(930)] = 36314, + [SMALL_STATE(931)] = 36354, + [SMALL_STATE(932)] = 36394, + [SMALL_STATE(933)] = 36434, + [SMALL_STATE(934)] = 36474, + [SMALL_STATE(935)] = 36514, + [SMALL_STATE(936)] = 36554, + [SMALL_STATE(937)] = 36594, + [SMALL_STATE(938)] = 36634, + [SMALL_STATE(939)] = 36682, + [SMALL_STATE(940)] = 36722, + [SMALL_STATE(941)] = 36762, + [SMALL_STATE(942)] = 36802, + [SMALL_STATE(943)] = 36842, + [SMALL_STATE(944)] = 36882, + [SMALL_STATE(945)] = 36910, + [SMALL_STATE(946)] = 36952, + [SMALL_STATE(947)] = 36992, + [SMALL_STATE(948)] = 37032, + [SMALL_STATE(949)] = 37072, + [SMALL_STATE(950)] = 37112, + [SMALL_STATE(951)] = 37162, + [SMALL_STATE(952)] = 37202, + [SMALL_STATE(953)] = 37242, + [SMALL_STATE(954)] = 37282, + [SMALL_STATE(955)] = 37322, + [SMALL_STATE(956)] = 37362, + [SMALL_STATE(957)] = 37402, + [SMALL_STATE(958)] = 37442, + [SMALL_STATE(959)] = 37484, + [SMALL_STATE(960)] = 37512, + [SMALL_STATE(961)] = 37552, + [SMALL_STATE(962)] = 37580, + [SMALL_STATE(963)] = 37622, + [SMALL_STATE(964)] = 37650, + [SMALL_STATE(965)] = 37692, + [SMALL_STATE(966)] = 37734, + [SMALL_STATE(967)] = 37776, + [SMALL_STATE(968)] = 37804, + [SMALL_STATE(969)] = 37844, + [SMALL_STATE(970)] = 37884, + [SMALL_STATE(971)] = 37924, + [SMALL_STATE(972)] = 37964, + [SMALL_STATE(973)] = 37992, + [SMALL_STATE(974)] = 38024, + [SMALL_STATE(975)] = 38065, + [SMALL_STATE(976)] = 38092, + [SMALL_STATE(977)] = 38141, + [SMALL_STATE(978)] = 38168, + [SMALL_STATE(979)] = 38213, + [SMALL_STATE(980)] = 38258, + [SMALL_STATE(981)] = 38301, + [SMALL_STATE(982)] = 38346, + [SMALL_STATE(983)] = 38387, + [SMALL_STATE(984)] = 38436, + [SMALL_STATE(985)] = 38471, + [SMALL_STATE(986)] = 38512, + [SMALL_STATE(987)] = 38553, + [SMALL_STATE(988)] = 38594, + [SMALL_STATE(989)] = 38621, + [SMALL_STATE(990)] = 38666, + [SMALL_STATE(991)] = 38693, + [SMALL_STATE(992)] = 38720, + [SMALL_STATE(993)] = 38749, + [SMALL_STATE(994)] = 38794, + [SMALL_STATE(995)] = 38839, + [SMALL_STATE(996)] = 38866, + [SMALL_STATE(997)] = 38907, + [SMALL_STATE(998)] = 38952, + [SMALL_STATE(999)] = 38997, + [SMALL_STATE(1000)] = 39024, + [SMALL_STATE(1001)] = 39051, + [SMALL_STATE(1002)] = 39092, + [SMALL_STATE(1003)] = 39137, + [SMALL_STATE(1004)] = 39178, + [SMALL_STATE(1005)] = 39205, + [SMALL_STATE(1006)] = 39232, + [SMALL_STATE(1007)] = 39271, + [SMALL_STATE(1008)] = 39308, + [SMALL_STATE(1009)] = 39349, + [SMALL_STATE(1010)] = 39384, + [SMALL_STATE(1011)] = 39425, + [SMALL_STATE(1012)] = 39458, + [SMALL_STATE(1013)] = 39503, + [SMALL_STATE(1014)] = 39534, + [SMALL_STATE(1015)] = 39568, + [SMALL_STATE(1016)] = 39591, + [SMALL_STATE(1017)] = 39614, + [SMALL_STATE(1018)] = 39652, + [SMALL_STATE(1019)] = 39690, + [SMALL_STATE(1020)] = 39728, + [SMALL_STATE(1021)] = 39760, + [SMALL_STATE(1022)] = 39798, + [SMALL_STATE(1023)] = 39830, + [SMALL_STATE(1024)] = 39862, + [SMALL_STATE(1025)] = 39894, + [SMALL_STATE(1026)] = 39932, + [SMALL_STATE(1027)] = 39964, + [SMALL_STATE(1028)] = 39996, + [SMALL_STATE(1029)] = 40034, + [SMALL_STATE(1030)] = 40066, + [SMALL_STATE(1031)] = 40098, + [SMALL_STATE(1032)] = 40130, + [SMALL_STATE(1033)] = 40168, + [SMALL_STATE(1034)] = 40197, + [SMALL_STATE(1035)] = 40226, + [SMALL_STATE(1036)] = 40255, + [SMALL_STATE(1037)] = 40278, + [SMALL_STATE(1038)] = 40307, + [SMALL_STATE(1039)] = 40334, + [SMALL_STATE(1040)] = 40363, + [SMALL_STATE(1041)] = 40392, + [SMALL_STATE(1042)] = 40421, + [SMALL_STATE(1043)] = 40450, + [SMALL_STATE(1044)] = 40477, + [SMALL_STATE(1045)] = 40504, + [SMALL_STATE(1046)] = 40539, + [SMALL_STATE(1047)] = 40562, + [SMALL_STATE(1048)] = 40591, + [SMALL_STATE(1049)] = 40626, + [SMALL_STATE(1050)] = 40649, + [SMALL_STATE(1051)] = 40678, + [SMALL_STATE(1052)] = 40707, + [SMALL_STATE(1053)] = 40736, + [SMALL_STATE(1054)] = 40763, + [SMALL_STATE(1055)] = 40792, + [SMALL_STATE(1056)] = 40815, + [SMALL_STATE(1057)] = 40844, + [SMALL_STATE(1058)] = 40873, + [SMALL_STATE(1059)] = 40908, + [SMALL_STATE(1060)] = 40937, + [SMALL_STATE(1061)] = 40966, + [SMALL_STATE(1062)] = 40998, + [SMALL_STATE(1063)] = 41016, + [SMALL_STATE(1064)] = 41034, + [SMALL_STATE(1065)] = 41056, + [SMALL_STATE(1066)] = 41082, + [SMALL_STATE(1067)] = 41108, + [SMALL_STATE(1068)] = 41134, + [SMALL_STATE(1069)] = 41152, + [SMALL_STATE(1070)] = 41184, + [SMALL_STATE(1071)] = 41216, + [SMALL_STATE(1072)] = 41242, + [SMALL_STATE(1073)] = 41274, + [SMALL_STATE(1074)] = 41299, + [SMALL_STATE(1075)] = 41320, + [SMALL_STATE(1076)] = 41345, + [SMALL_STATE(1077)] = 41366, + [SMALL_STATE(1078)] = 41395, + [SMALL_STATE(1079)] = 41420, + [SMALL_STATE(1080)] = 41449, + [SMALL_STATE(1081)] = 41470, + [SMALL_STATE(1082)] = 41499, + [SMALL_STATE(1083)] = 41520, + [SMALL_STATE(1084)] = 41549, + [SMALL_STATE(1085)] = 41578, + [SMALL_STATE(1086)] = 41607, + [SMALL_STATE(1087)] = 41632, + [SMALL_STATE(1088)] = 41661, + [SMALL_STATE(1089)] = 41682, + [SMALL_STATE(1090)] = 41707, + [SMALL_STATE(1091)] = 41734, + [SMALL_STATE(1092)] = 41763, + [SMALL_STATE(1093)] = 41779, + [SMALL_STATE(1094)] = 41795, + [SMALL_STATE(1095)] = 41811, + [SMALL_STATE(1096)] = 41837, + [SMALL_STATE(1097)] = 41861, + [SMALL_STATE(1098)] = 41877, + [SMALL_STATE(1099)] = 41903, + [SMALL_STATE(1100)] = 41929, + [SMALL_STATE(1101)] = 41945, + [SMALL_STATE(1102)] = 41961, + [SMALL_STATE(1103)] = 41985, + [SMALL_STATE(1104)] = 42011, + [SMALL_STATE(1105)] = 42031, + [SMALL_STATE(1106)] = 42046, + [SMALL_STATE(1107)] = 42069, + [SMALL_STATE(1108)] = 42084, + [SMALL_STATE(1109)] = 42099, + [SMALL_STATE(1110)] = 42114, + [SMALL_STATE(1111)] = 42137, + [SMALL_STATE(1112)] = 42160, + [SMALL_STATE(1113)] = 42175, + [SMALL_STATE(1114)] = 42190, + [SMALL_STATE(1115)] = 42205, + [SMALL_STATE(1116)] = 42220, + [SMALL_STATE(1117)] = 42238, + [SMALL_STATE(1118)] = 42252, + [SMALL_STATE(1119)] = 42266, + [SMALL_STATE(1120)] = 42280, + [SMALL_STATE(1121)] = 42298, + [SMALL_STATE(1122)] = 42316, + [SMALL_STATE(1123)] = 42330, + [SMALL_STATE(1124)] = 42344, + [SMALL_STATE(1125)] = 42358, + [SMALL_STATE(1126)] = 42376, + [SMALL_STATE(1127)] = 42394, + [SMALL_STATE(1128)] = 42412, + [SMALL_STATE(1129)] = 42426, + [SMALL_STATE(1130)] = 42444, + [SMALL_STATE(1131)] = 42458, + [SMALL_STATE(1132)] = 42476, + [SMALL_STATE(1133)] = 42487, + [SMALL_STATE(1134)] = 42498, + [SMALL_STATE(1135)] = 42509, + [SMALL_STATE(1136)] = 42520, + [SMALL_STATE(1137)] = 42537, + [SMALL_STATE(1138)] = 42556, + [SMALL_STATE(1139)] = 42573, + [SMALL_STATE(1140)] = 42584, + [SMALL_STATE(1141)] = 42595, + [SMALL_STATE(1142)] = 42606, + [SMALL_STATE(1143)] = 42625, + [SMALL_STATE(1144)] = 42636, + [SMALL_STATE(1145)] = 42655, + [SMALL_STATE(1146)] = 42666, + [SMALL_STATE(1147)] = 42685, + [SMALL_STATE(1148)] = 42704, + [SMALL_STATE(1149)] = 42715, + [SMALL_STATE(1150)] = 42726, + [SMALL_STATE(1151)] = 42737, + [SMALL_STATE(1152)] = 42753, + [SMALL_STATE(1153)] = 42769, + [SMALL_STATE(1154)] = 42785, + [SMALL_STATE(1155)] = 42801, + [SMALL_STATE(1156)] = 42817, + [SMALL_STATE(1157)] = 42831, + [SMALL_STATE(1158)] = 42847, + [SMALL_STATE(1159)] = 42863, + [SMALL_STATE(1160)] = 42879, + [SMALL_STATE(1161)] = 42895, + [SMALL_STATE(1162)] = 42911, + [SMALL_STATE(1163)] = 42927, + [SMALL_STATE(1164)] = 42941, + [SMALL_STATE(1165)] = 42957, + [SMALL_STATE(1166)] = 42973, + [SMALL_STATE(1167)] = 42989, + [SMALL_STATE(1168)] = 43005, + [SMALL_STATE(1169)] = 43021, + [SMALL_STATE(1170)] = 43030, + [SMALL_STATE(1171)] = 43043, + [SMALL_STATE(1172)] = 43056, + [SMALL_STATE(1173)] = 43069, + [SMALL_STATE(1174)] = 43082, + [SMALL_STATE(1175)] = 43095, + [SMALL_STATE(1176)] = 43108, + [SMALL_STATE(1177)] = 43121, + [SMALL_STATE(1178)] = 43134, + [SMALL_STATE(1179)] = 43147, + [SMALL_STATE(1180)] = 43160, + [SMALL_STATE(1181)] = 43173, + [SMALL_STATE(1182)] = 43184, + [SMALL_STATE(1183)] = 43197, + [SMALL_STATE(1184)] = 43210, + [SMALL_STATE(1185)] = 43223, + [SMALL_STATE(1186)] = 43236, + [SMALL_STATE(1187)] = 43249, + [SMALL_STATE(1188)] = 43262, + [SMALL_STATE(1189)] = 43275, + [SMALL_STATE(1190)] = 43288, + [SMALL_STATE(1191)] = 43301, + [SMALL_STATE(1192)] = 43314, + [SMALL_STATE(1193)] = 43327, + [SMALL_STATE(1194)] = 43340, + [SMALL_STATE(1195)] = 43353, + [SMALL_STATE(1196)] = 43366, + [SMALL_STATE(1197)] = 43379, + [SMALL_STATE(1198)] = 43392, + [SMALL_STATE(1199)] = 43405, + [SMALL_STATE(1200)] = 43418, + [SMALL_STATE(1201)] = 43431, + [SMALL_STATE(1202)] = 43444, + [SMALL_STATE(1203)] = 43457, + [SMALL_STATE(1204)] = 43470, + [SMALL_STATE(1205)] = 43483, + [SMALL_STATE(1206)] = 43496, + [SMALL_STATE(1207)] = 43509, + [SMALL_STATE(1208)] = 43522, + [SMALL_STATE(1209)] = 43535, + [SMALL_STATE(1210)] = 43548, + [SMALL_STATE(1211)] = 43561, + [SMALL_STATE(1212)] = 43574, + [SMALL_STATE(1213)] = 43585, + [SMALL_STATE(1214)] = 43598, + [SMALL_STATE(1215)] = 43611, + [SMALL_STATE(1216)] = 43624, + [SMALL_STATE(1217)] = 43637, + [SMALL_STATE(1218)] = 43650, + [SMALL_STATE(1219)] = 43663, + [SMALL_STATE(1220)] = 43676, + [SMALL_STATE(1221)] = 43689, + [SMALL_STATE(1222)] = 43702, + [SMALL_STATE(1223)] = 43715, + [SMALL_STATE(1224)] = 43728, + [SMALL_STATE(1225)] = 43741, + [SMALL_STATE(1226)] = 43754, + [SMALL_STATE(1227)] = 43767, + [SMALL_STATE(1228)] = 43780, + [SMALL_STATE(1229)] = 43793, + [SMALL_STATE(1230)] = 43806, + [SMALL_STATE(1231)] = 43815, + [SMALL_STATE(1232)] = 43825, + [SMALL_STATE(1233)] = 43835, + [SMALL_STATE(1234)] = 43845, + [SMALL_STATE(1235)] = 43853, + [SMALL_STATE(1236)] = 43863, + [SMALL_STATE(1237)] = 43873, + [SMALL_STATE(1238)] = 43883, + [SMALL_STATE(1239)] = 43891, + [SMALL_STATE(1240)] = 43901, + [SMALL_STATE(1241)] = 43909, + [SMALL_STATE(1242)] = 43917, + [SMALL_STATE(1243)] = 43927, + [SMALL_STATE(1244)] = 43937, + [SMALL_STATE(1245)] = 43947, + [SMALL_STATE(1246)] = 43957, + [SMALL_STATE(1247)] = 43965, + [SMALL_STATE(1248)] = 43975, + [SMALL_STATE(1249)] = 43985, + [SMALL_STATE(1250)] = 43995, + [SMALL_STATE(1251)] = 44005, + [SMALL_STATE(1252)] = 44013, + [SMALL_STATE(1253)] = 44023, + [SMALL_STATE(1254)] = 44033, + [SMALL_STATE(1255)] = 44043, + [SMALL_STATE(1256)] = 44053, + [SMALL_STATE(1257)] = 44061, + [SMALL_STATE(1258)] = 44069, + [SMALL_STATE(1259)] = 44079, + [SMALL_STATE(1260)] = 44089, + [SMALL_STATE(1261)] = 44099, + [SMALL_STATE(1262)] = 44109, + [SMALL_STATE(1263)] = 44117, + [SMALL_STATE(1264)] = 44127, + [SMALL_STATE(1265)] = 44135, + [SMALL_STATE(1266)] = 44143, + [SMALL_STATE(1267)] = 44153, + [SMALL_STATE(1268)] = 44161, + [SMALL_STATE(1269)] = 44169, + [SMALL_STATE(1270)] = 44177, + [SMALL_STATE(1271)] = 44187, + [SMALL_STATE(1272)] = 44197, + [SMALL_STATE(1273)] = 44207, + [SMALL_STATE(1274)] = 44217, + [SMALL_STATE(1275)] = 44227, + [SMALL_STATE(1276)] = 44237, + [SMALL_STATE(1277)] = 44247, + [SMALL_STATE(1278)] = 44257, + [SMALL_STATE(1279)] = 44267, + [SMALL_STATE(1280)] = 44277, + [SMALL_STATE(1281)] = 44287, + [SMALL_STATE(1282)] = 44297, + [SMALL_STATE(1283)] = 44307, + [SMALL_STATE(1284)] = 44317, + [SMALL_STATE(1285)] = 44327, + [SMALL_STATE(1286)] = 44337, + [SMALL_STATE(1287)] = 44345, + [SMALL_STATE(1288)] = 44353, + [SMALL_STATE(1289)] = 44361, + [SMALL_STATE(1290)] = 44371, + [SMALL_STATE(1291)] = 44379, + [SMALL_STATE(1292)] = 44387, + [SMALL_STATE(1293)] = 44397, + [SMALL_STATE(1294)] = 44404, + [SMALL_STATE(1295)] = 44411, + [SMALL_STATE(1296)] = 44418, + [SMALL_STATE(1297)] = 44425, + [SMALL_STATE(1298)] = 44432, + [SMALL_STATE(1299)] = 44439, + [SMALL_STATE(1300)] = 44446, + [SMALL_STATE(1301)] = 44453, + [SMALL_STATE(1302)] = 44460, + [SMALL_STATE(1303)] = 44467, + [SMALL_STATE(1304)] = 44474, + [SMALL_STATE(1305)] = 44481, + [SMALL_STATE(1306)] = 44488, + [SMALL_STATE(1307)] = 44495, + [SMALL_STATE(1308)] = 44502, + [SMALL_STATE(1309)] = 44509, + [SMALL_STATE(1310)] = 44516, + [SMALL_STATE(1311)] = 44523, + [SMALL_STATE(1312)] = 44530, + [SMALL_STATE(1313)] = 44537, + [SMALL_STATE(1314)] = 44544, + [SMALL_STATE(1315)] = 44551, + [SMALL_STATE(1316)] = 44558, + [SMALL_STATE(1317)] = 44565, + [SMALL_STATE(1318)] = 44572, + [SMALL_STATE(1319)] = 44579, + [SMALL_STATE(1320)] = 44586, + [SMALL_STATE(1321)] = 44593, + [SMALL_STATE(1322)] = 44600, + [SMALL_STATE(1323)] = 44607, + [SMALL_STATE(1324)] = 44614, + [SMALL_STATE(1325)] = 44621, + [SMALL_STATE(1326)] = 44628, + [SMALL_STATE(1327)] = 44635, + [SMALL_STATE(1328)] = 44642, + [SMALL_STATE(1329)] = 44649, + [SMALL_STATE(1330)] = 44656, + [SMALL_STATE(1331)] = 44663, + [SMALL_STATE(1332)] = 44670, + [SMALL_STATE(1333)] = 44677, + [SMALL_STATE(1334)] = 44684, + [SMALL_STATE(1335)] = 44691, + [SMALL_STATE(1336)] = 44698, + [SMALL_STATE(1337)] = 44705, + [SMALL_STATE(1338)] = 44712, + [SMALL_STATE(1339)] = 44719, + [SMALL_STATE(1340)] = 44726, + [SMALL_STATE(1341)] = 44733, + [SMALL_STATE(1342)] = 44740, + [SMALL_STATE(1343)] = 44747, + [SMALL_STATE(1344)] = 44754, + [SMALL_STATE(1345)] = 44761, + [SMALL_STATE(1346)] = 44768, + [SMALL_STATE(1347)] = 44775, + [SMALL_STATE(1348)] = 44782, + [SMALL_STATE(1349)] = 44789, + [SMALL_STATE(1350)] = 44796, + [SMALL_STATE(1351)] = 44803, + [SMALL_STATE(1352)] = 44810, + [SMALL_STATE(1353)] = 44817, + [SMALL_STATE(1354)] = 44824, + [SMALL_STATE(1355)] = 44831, + [SMALL_STATE(1356)] = 44838, + [SMALL_STATE(1357)] = 44845, + [SMALL_STATE(1358)] = 44852, + [SMALL_STATE(1359)] = 44859, + [SMALL_STATE(1360)] = 44866, + [SMALL_STATE(1361)] = 44873, + [SMALL_STATE(1362)] = 44880, + [SMALL_STATE(1363)] = 44887, + [SMALL_STATE(1364)] = 44894, + [SMALL_STATE(1365)] = 44901, + [SMALL_STATE(1366)] = 44908, + [SMALL_STATE(1367)] = 44915, + [SMALL_STATE(1368)] = 44922, + [SMALL_STATE(1369)] = 44929, + [SMALL_STATE(1370)] = 44936, + [SMALL_STATE(1371)] = 44943, + [SMALL_STATE(1372)] = 44950, + [SMALL_STATE(1373)] = 44957, + [SMALL_STATE(1374)] = 44964, + [SMALL_STATE(1375)] = 44971, + [SMALL_STATE(1376)] = 44978, + [SMALL_STATE(1377)] = 44985, + [SMALL_STATE(1378)] = 44992, + [SMALL_STATE(1379)] = 44999, + [SMALL_STATE(1380)] = 45006, + [SMALL_STATE(1381)] = 45013, + [SMALL_STATE(1382)] = 45020, + [SMALL_STATE(1383)] = 45027, + [SMALL_STATE(1384)] = 45034, + [SMALL_STATE(1385)] = 45041, + [SMALL_STATE(1386)] = 45048, + [SMALL_STATE(1387)] = 45055, + [SMALL_STATE(1388)] = 45062, + [SMALL_STATE(1389)] = 45069, + [SMALL_STATE(1390)] = 45076, + [SMALL_STATE(1391)] = 45083, + [SMALL_STATE(1392)] = 45090, + [SMALL_STATE(1393)] = 45097, + [SMALL_STATE(1394)] = 45104, + [SMALL_STATE(1395)] = 45111, + [SMALL_STATE(1396)] = 45118, + [SMALL_STATE(1397)] = 45125, + [SMALL_STATE(1398)] = 45132, + [SMALL_STATE(1399)] = 45139, + [SMALL_STATE(1400)] = 45146, + [SMALL_STATE(1401)] = 45153, + [SMALL_STATE(1402)] = 45160, + [SMALL_STATE(1403)] = 45167, + [SMALL_STATE(1404)] = 45174, + [SMALL_STATE(1405)] = 45181, + [SMALL_STATE(1406)] = 45188, + [SMALL_STATE(1407)] = 45195, + [SMALL_STATE(1408)] = 45202, + [SMALL_STATE(1409)] = 45209, + [SMALL_STATE(1410)] = 45216, + [SMALL_STATE(1411)] = 45223, + [SMALL_STATE(1412)] = 45230, + [SMALL_STATE(1413)] = 45237, + [SMALL_STATE(1414)] = 45244, + [SMALL_STATE(1415)] = 45251, + [SMALL_STATE(1416)] = 45258, + [SMALL_STATE(1417)] = 45265, + [SMALL_STATE(1418)] = 45272, + [SMALL_STATE(1419)] = 45279, + [SMALL_STATE(1420)] = 45286, + [SMALL_STATE(1421)] = 45293, + [SMALL_STATE(1422)] = 45300, + [SMALL_STATE(1423)] = 45307, + [SMALL_STATE(1424)] = 45314, + [SMALL_STATE(1425)] = 45321, + [SMALL_STATE(1426)] = 45328, + [SMALL_STATE(1427)] = 45335, + [SMALL_STATE(1428)] = 45342, + [SMALL_STATE(1429)] = 45349, + [SMALL_STATE(1430)] = 45356, + [SMALL_STATE(1431)] = 45363, + [SMALL_STATE(1432)] = 45370, + [SMALL_STATE(1433)] = 45377, + [SMALL_STATE(1434)] = 45384, + [SMALL_STATE(1435)] = 45391, + [SMALL_STATE(1436)] = 45398, + [SMALL_STATE(1437)] = 45405, + [SMALL_STATE(1438)] = 45412, + [SMALL_STATE(1439)] = 45419, + [SMALL_STATE(1440)] = 45426, + [SMALL_STATE(1441)] = 45433, + [SMALL_STATE(1442)] = 45440, + [SMALL_STATE(1443)] = 45447, + [SMALL_STATE(1444)] = 45454, + [SMALL_STATE(1445)] = 45461, + [SMALL_STATE(1446)] = 45468, + [SMALL_STATE(1447)] = 45475, + [SMALL_STATE(1448)] = 45482, + [SMALL_STATE(1449)] = 45489, + [SMALL_STATE(1450)] = 45496, + [SMALL_STATE(1451)] = 45503, + [SMALL_STATE(1452)] = 45510, + [SMALL_STATE(1453)] = 45517, + [SMALL_STATE(1454)] = 45524, + [SMALL_STATE(1455)] = 45531, + [SMALL_STATE(1456)] = 45538, + [SMALL_STATE(1457)] = 45545, + [SMALL_STATE(1458)] = 45552, + [SMALL_STATE(1459)] = 45559, + [SMALL_STATE(1460)] = 45566, + [SMALL_STATE(1461)] = 45573, + [SMALL_STATE(1462)] = 45580, + [SMALL_STATE(1463)] = 45587, + [SMALL_STATE(1464)] = 45594, + [SMALL_STATE(1465)] = 45601, + [SMALL_STATE(1466)] = 45608, + [SMALL_STATE(1467)] = 45615, + [SMALL_STATE(1468)] = 45622, + [SMALL_STATE(1469)] = 45629, + [SMALL_STATE(1470)] = 45636, + [SMALL_STATE(1471)] = 45643, + [SMALL_STATE(1472)] = 45650, + [SMALL_STATE(1473)] = 45657, + [SMALL_STATE(1474)] = 45664, + [SMALL_STATE(1475)] = 45671, + [SMALL_STATE(1476)] = 45678, + [SMALL_STATE(1477)] = 45685, + [SMALL_STATE(1478)] = 45692, + [SMALL_STATE(1479)] = 45699, + [SMALL_STATE(1480)] = 45706, + [SMALL_STATE(1481)] = 45713, + [SMALL_STATE(1482)] = 45720, + [SMALL_STATE(1483)] = 45727, + [SMALL_STATE(1484)] = 45734, + [SMALL_STATE(1485)] = 45741, + [SMALL_STATE(1486)] = 45748, + [SMALL_STATE(1487)] = 45755, + [SMALL_STATE(1488)] = 45762, + [SMALL_STATE(1489)] = 45769, + [SMALL_STATE(1490)] = 45776, + [SMALL_STATE(1491)] = 45783, + [SMALL_STATE(1492)] = 45790, + [SMALL_STATE(1493)] = 45797, + [SMALL_STATE(1494)] = 45804, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -83083,1654 +84181,1664 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1083), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1395), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(953), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1396), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1254), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(373), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(577), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(577), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(508), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(96), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(874), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(726), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1480), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1477), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(887), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(679), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(681), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(721), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(897), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1219), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1143), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1256), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1281), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(530), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1378), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1290), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(242), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(482), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1376), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1375), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(510), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(511), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1454), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(618), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1155), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(618), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(402), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1073), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1444), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(927), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1424), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1261), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(211), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(877), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(725), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1247), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(527), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1327), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1249), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(265), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1488), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1324), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1323), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1428), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(404), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1330), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(956), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1331), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1240), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(213), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(872), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(731), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1250), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1236), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(555), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1437), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(286), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1484), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1084), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1487), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(962), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1483), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1289), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(138), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(881), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(707), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1241), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1242), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(509), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1464), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1229), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(345), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1460), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(458), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1458), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(403), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(373), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(96), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(874), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(679), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1480), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1477), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(681), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(721), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(897), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1219), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1143), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1281), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1290), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(242), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(482), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1376), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1375), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1402), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1454), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(618), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1155), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(618), - [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(401), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(213), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(872), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1250), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1236), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1253), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(286), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1484), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(473), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(408), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(211), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(877), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1247), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1249), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(265), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1488), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(451), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1324), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1323), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1428), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(138), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(881), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1242), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1229), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(345), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1460), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(458), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1459), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1456), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 80), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 80), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 84), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 84), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 70), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 70), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 63), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 63), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 85), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 85), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 72), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 72), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 55), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 55), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 67), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 67), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(626), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(373), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(577), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(508), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(213), - [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1237), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1250), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1236), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(555), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1437), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1253), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(286), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1484), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(473), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1436), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(510), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(511), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1454), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(618), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1248), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1155), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(618), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(96), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1256), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1281), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(530), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1378), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1290), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(242), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1486), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(482), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1376), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1375), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1402), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(628), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(138), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1241), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1242), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(509), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1464), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1229), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(345), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1460), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(458), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1459), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1458), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1456), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(625), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(211), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(27), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1247), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1327), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1249), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(265), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1488), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(451), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1324), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1323), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1428), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1452] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(864), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(889), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1445), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(963), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1363), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1257), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(679), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1480), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1285), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1477), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(681), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(721), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(897), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1219), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1147), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1143), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1446), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(940), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1410), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1251), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1423), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(923), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1317), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1245), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1155), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(679), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1480), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1285), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1477), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(681), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(659), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(886), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(727), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 75), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 61), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(681), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(864), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2495] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(864), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1013), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1014), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1480), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1275), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 73), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 73), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 73), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 64), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 74), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 74), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 65), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 65), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 74), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 74), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 74), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 74), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(546), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1380), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 58), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 65), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 68), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 74), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 57), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1055), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1156), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1156), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(911), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(537), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1278), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(620), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 69), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1054), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(869), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1279), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1230), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1022), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(424), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 67), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3559] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 55), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 67), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 55), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1080), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1401), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(949), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(381), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(514), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(581), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(88), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(883), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1489), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(692), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(886), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1176), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1144), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1285), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1280), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(520), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1407), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1275), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(130), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1492), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(469), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1404), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1408), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(523), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(525), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(595), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1251), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1160), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(595), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1082), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1428), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1493), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1231), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(879), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(732), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1263), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1266), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(519), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1270), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(189), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1476), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(473), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1473), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1472), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1074), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1450), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(932), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1430), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1276), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(132), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(877), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(737), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1244), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1248), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(567), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1324), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1245), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(305), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1494), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1333), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1434), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(418), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1088), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1336), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(943), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1277), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(272), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(736), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1289), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1415), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1258), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(131), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1490), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(479), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1417), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1418), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1343), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(406), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(581), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(883), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(692), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1489), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1283), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(886), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1176), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1144), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1285), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1280), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(130), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1492), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(469), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1405), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1404), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1408), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(523), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(525), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1470), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(595), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1251), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1160), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(595), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(414), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(878), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1289), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(131), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1490), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(479), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1417), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1418), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(402), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(132), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(877), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1244), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1248), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1245), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(305), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1494), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(478), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1333), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1434), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(421), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(150), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(879), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1263), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1270), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(189), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1476), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(473), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1473), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1472), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 49), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 49), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 86), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 86), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 85), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 85), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 84), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 84), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 83), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 81), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 81), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 78), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 77), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 72), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 72), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 71), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 70), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 70), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 63), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 63), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 62), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 62), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 59), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 56), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 67), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 67), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 55), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 55), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 54), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 51), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(629), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(514), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(514), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(581), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(132), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1261), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1244), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1248), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(567), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1324), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1245), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(305), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1494), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(478), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1333), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1335), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1434), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(523), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(525), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1471), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(595), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1251), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1160), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(595), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(626), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(150), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(24), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1263), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1266), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(519), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1270), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(189), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1476), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(473), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1473), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1472), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(628), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(88), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(21), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1285), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1280), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(520), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1407), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1275), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(130), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1492), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(469), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1405), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1404), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1408), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1260), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1289), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(540), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1415), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1258), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(131), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1490), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(479), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1417), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1418), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1343), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1471] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(869), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(887), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1451), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(952), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1369), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1279), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(692), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1489), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(687), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(749), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(886), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1176), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1146), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1144), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1452), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(930), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1282), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1429), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(969), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1396), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1242), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1160), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 53), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 73), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 73), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 52), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 66), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(692), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1489), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1274), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1486), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(687), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(660), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 49), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 55), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 67), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 49), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 56), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(723), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(894), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 76), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 48), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 61), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(687), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(869), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 45), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2456] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(869), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1016), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1015), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1489), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 74), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 64), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1283), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 74), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 64), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 74), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 64), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 47), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 75), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 75), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 47), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 65), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 65), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 65), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 47), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 75), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 75), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 47), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 47), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 75), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 75), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 58), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 47), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 46), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 65), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(555), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1301), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 65), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 47), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 47), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 75), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 68), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 57), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1059), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 50), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1161), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1161), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(868), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(621), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(423), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1026), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 50), + [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), SHIFT_REPEAT(1054), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 50), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1243), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1273), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(937), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1287), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(508), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 69), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 55), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 67), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 55), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 67), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3586] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index c916d54b..e170f925 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -438,6 +438,25 @@ int main() { (expression_statement (sizeof_expression (type_descriptor (primitive_type) (abstract_pointer_declarator (abstract_function_declarator (parameter_list))))))))) +============================================ +Offsetof expressions +============================================ + +int main() { + offsetof( struct x, a ); + offsetof( x, a ); +} + +--- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator (identifier) (parameter_list)) + (compound_statement + (expression_statement (offsetof_expression (type_descriptor (struct_specifier (type_identifier))) (field_identifier))) + (expression_statement (offsetof_expression (type_descriptor (type_identifier)) (field_identifier)))))) + ============================================ Compound literals ============================================