From 7688778ea3025f14c5a06325fac590dd807b50f6 Mon Sep 17 00:00:00 2001 From: Benjamin Brownlee Date: Fri, 9 Jun 2023 17:58:20 -0700 Subject: [PATCH] feat: add gnu inline asm syntax --- grammar.js | 52 + src/grammar.json | 362 + src/node-types.json | 171 + src/parser.c | 104247 +++++++++++++++++---------------- test/corpus/expressions.txt | 44 + 5 files changed, 54160 insertions(+), 50716 deletions(-) diff --git a/grammar.js b/grammar.js index 19de8d6..e484b55 100644 --- a/grammar.js +++ b/grammar.js @@ -752,6 +752,7 @@ module.exports = grammar({ $.concatenated_string, $.char_literal, $.parenthesized_expression, + $.gnu_asm_expression, ), comma_expression: $ => seq( @@ -889,6 +890,57 @@ module.exports = grammar({ field('arguments', $.argument_list), )), + gnu_asm_expression: $ => prec(PREC.CALL, seq( + choice("asm", "__asm__"), + repeat($.gnu_asm_qualifier), + "(", + field('assembly_code', choice($.string_literal, $.concatenated_string)), + optional(seq( + field('output_operands', $.gnu_asm_operand_list), + optional(seq( + field('input_operands', $.gnu_asm_operand_list), + optional(seq( + field('clobbers', $.gnu_asm_clobber_list), + optional(field('goto_labels', $.gnu_asm_goto_list)) + )), + )), + )), + ")", + )), + + gnu_asm_qualifier: _ => choice( + "volatile", + "inline", + "goto", + ), + + gnu_asm_operand_list: $ => seq( + ":", + commaSep(field("operand", $.gnu_asm_operand)), + ), + + gnu_asm_operand: $ => seq( + optional(seq( + "[", + field('symbol', $.identifier), + "]", + )), + field('constraint', $.string_literal), + "(", + field('value', $.identifier), + ")", + ), + + gnu_asm_clobber_list: $ => seq( + ":", + commaSep(field('register', $.string_literal)), + ), + + gnu_asm_goto_list: $ => seq( + ":", + commaSep(field('label', $.identifier)), + ), + argument_list: $ => seq('(', commaSep($._expression), ')'), field_expression: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index e59a0ab..c40738c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4417,6 +4417,10 @@ { "type": "SYMBOL", "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "gnu_asm_expression" } ] }, @@ -5615,6 +5619,364 @@ ] } }, + "gnu_asm_expression": { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "asm" + }, + { + "type": "STRING", + "value": "__asm__" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_qualifier" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "assembly_code", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "output_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_operand_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "input_operands", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_operand_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "clobbers", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_clobber_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "goto_labels", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_goto_list" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "gnu_asm_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "goto" + } + ] + }, + "gnu_asm_operand_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_operand" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "operand", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_operand" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "gnu_asm_clobber_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_goto_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, "argument_list": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index c28d422..8f59b94 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -99,6 +99,10 @@ "type": "generic_expression", "named": true }, + { + "type": "gnu_asm_expression", + "named": true + }, { "type": "identifier", "named": true @@ -1699,6 +1703,165 @@ ] } }, + { + "type": "gnu_asm_clobber_list", + "named": true, + "fields": { + "register": { + "multiple": true, + "required": false, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_expression", + "named": true, + "fields": { + "assembly_code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + "clobbers": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_clobber_list", + "named": true + } + ] + }, + "goto_labels": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_goto_list", + "named": true + } + ] + }, + "input_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_operand_list", + "named": true + } + ] + }, + "output_operands": { + "multiple": false, + "required": false, + "types": [ + { + "type": "gnu_asm_operand_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_qualifier", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_goto_list", + "named": true, + "fields": { + "label": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_operand", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + }, + "symbol": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_operand_list", + "named": true, + "fields": { + "operand": { + "multiple": true, + "required": false, + "types": [ + { + "type": "gnu_asm_operand", + "named": true + } + ] + } + } + }, + { + "type": "gnu_asm_qualifier", + "named": true, + "fields": {} + }, { "type": "goto_statement", "named": true, @@ -3420,6 +3583,10 @@ "type": "_Noreturn", "named": false }, + { + "type": "__asm__", + "named": false + }, { "type": "__attribute__", "named": false @@ -3468,6 +3635,10 @@ "type": "_unaligned", "named": false }, + { + "type": "asm", + "named": false + }, { "type": "auto", "named": false diff --git a/src/parser.c b/src/parser.c index 2215f85..d1f1ca4 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 1546 #define LARGE_STATE_COUNT 385 -#define SYMBOL_COUNT 271 +#define SYMBOL_COUNT 283 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 131 +#define TOKEN_COUNT 133 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 25 +#define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 86 +#define PRODUCTION_ID_COUNT 107 enum { sym_identifier = 1, @@ -126,170 +126,182 @@ enum { 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_asm = 110, + anon_sym___asm__ = 111, + anon_sym_DOT = 112, + anon_sym_DASH_GT = 113, + sym_number_literal = 114, + anon_sym_L_SQUOTE = 115, + anon_sym_u_SQUOTE = 116, + anon_sym_U_SQUOTE = 117, + anon_sym_u8_SQUOTE = 118, + anon_sym_SQUOTE = 119, + aux_sym_char_literal_token1 = 120, + anon_sym_L_DQUOTE = 121, + anon_sym_u_DQUOTE = 122, + anon_sym_U_DQUOTE = 123, + anon_sym_u8_DQUOTE = 124, + anon_sym_DQUOTE = 125, + aux_sym_string_literal_token1 = 126, + sym_escape_sequence = 127, + sym_system_lib_string = 128, + sym_true = 129, + sym_false = 130, + sym_null = 131, + sym_comment = 132, + sym_translation_unit = 133, + sym_preproc_include = 134, + sym_preproc_def = 135, + sym_preproc_function_def = 136, + sym_preproc_params = 137, + sym_preproc_call = 138, + sym_preproc_if = 139, + sym_preproc_ifdef = 140, + sym_preproc_else = 141, + sym_preproc_elif = 142, + sym_preproc_if_in_field_declaration_list = 143, + sym_preproc_ifdef_in_field_declaration_list = 144, + sym_preproc_else_in_field_declaration_list = 145, + sym_preproc_elif_in_field_declaration_list = 146, + sym__preproc_expression = 147, + sym_preproc_parenthesized_expression = 148, + sym_preproc_defined = 149, + sym_preproc_unary_expression = 150, + sym_preproc_call_expression = 151, + sym_preproc_argument_list = 152, + sym_preproc_binary_expression = 153, + sym_function_definition = 154, + sym_declaration = 155, + sym_type_definition = 156, + sym__declaration_modifiers = 157, + sym__declaration_specifiers = 158, + sym_linkage_specification = 159, + sym_attribute_specifier = 160, + sym_attribute = 161, + sym_attribute_declaration = 162, + sym_ms_declspec_modifier = 163, + sym_ms_based_modifier = 164, + sym_ms_call_modifier = 165, + sym_ms_unaligned_ptr_modifier = 166, + sym_ms_pointer_modifier = 167, + sym_declaration_list = 168, + sym__declarator = 169, + sym__field_declarator = 170, + sym__type_declarator = 171, + sym__abstract_declarator = 172, + sym_parenthesized_declarator = 173, + sym_parenthesized_field_declarator = 174, + sym_parenthesized_type_declarator = 175, + sym_abstract_parenthesized_declarator = 176, + sym_attributed_declarator = 177, + sym_attributed_field_declarator = 178, + sym_attributed_type_declarator = 179, + sym_pointer_declarator = 180, + sym_pointer_field_declarator = 181, + sym_pointer_type_declarator = 182, + sym_abstract_pointer_declarator = 183, + sym_function_declarator = 184, + sym_function_field_declarator = 185, + sym_function_type_declarator = 186, + sym_abstract_function_declarator = 187, + sym_array_declarator = 188, + sym_array_field_declarator = 189, + sym_array_type_declarator = 190, + sym_abstract_array_declarator = 191, + sym_init_declarator = 192, + sym_compound_statement = 193, + sym_storage_class_specifier = 194, + sym_type_qualifier = 195, + sym__type_specifier = 196, + sym_sized_type_specifier = 197, + sym_enum_specifier = 198, + sym_enumerator_list = 199, + sym_struct_specifier = 200, + sym_union_specifier = 201, + sym_field_declaration_list = 202, + sym__field_declaration_list_item = 203, + sym_field_declaration = 204, + sym_bitfield_clause = 205, + sym_enumerator = 206, + sym_variadic_parameter = 207, + sym_parameter_list = 208, + sym_parameter_declaration = 209, + sym_attributed_statement = 210, + sym_labeled_statement = 211, + sym_expression_statement = 212, + sym_if_statement = 213, + sym_switch_statement = 214, + sym_case_statement = 215, + sym_while_statement = 216, + sym_do_statement = 217, + sym_for_statement = 218, + sym_return_statement = 219, + sym_break_statement = 220, + sym_continue_statement = 221, + sym_goto_statement = 222, + sym__expression = 223, + sym_comma_expression = 224, + sym_conditional_expression = 225, + sym_assignment_expression = 226, + sym_pointer_expression = 227, + sym_unary_expression = 228, + sym_binary_expression = 229, + sym_update_expression = 230, + sym_cast_expression = 231, + sym_type_descriptor = 232, + sym_sizeof_expression = 233, + sym_generic_expression = 234, + sym_subscript_expression = 235, + sym_call_expression = 236, + sym_gnu_asm_expression = 237, + sym_gnu_asm_qualifier = 238, + sym_gnu_asm_operand_list = 239, + sym_gnu_asm_operand = 240, + sym_gnu_asm_clobber_list = 241, + sym_gnu_asm_goto_list = 242, + sym_argument_list = 243, + sym_field_expression = 244, + sym_compound_literal_expression = 245, + sym_parenthesized_expression = 246, + sym_initializer_list = 247, + sym_initializer_pair = 248, + sym_subscript_designator = 249, + sym_field_designator = 250, + sym_char_literal = 251, + sym_concatenated_string = 252, + sym_string_literal = 253, + sym__empty_declaration = 254, + sym_macro_type_specifier = 255, + aux_sym_translation_unit_repeat1 = 256, + aux_sym_preproc_params_repeat1 = 257, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 258, + aux_sym_preproc_argument_list_repeat1 = 259, + aux_sym_declaration_repeat1 = 260, + aux_sym_type_definition_repeat1 = 261, + aux_sym_type_definition_repeat2 = 262, + aux_sym__declaration_specifiers_repeat1 = 263, + aux_sym_attribute_declaration_repeat1 = 264, + aux_sym_attributed_declarator_repeat1 = 265, + aux_sym_pointer_declarator_repeat1 = 266, + aux_sym_function_declarator_repeat1 = 267, + aux_sym_sized_type_specifier_repeat1 = 268, + aux_sym_enumerator_list_repeat1 = 269, + aux_sym_field_declaration_repeat1 = 270, + aux_sym_parameter_list_repeat1 = 271, + aux_sym_case_statement_repeat1 = 272, + aux_sym_generic_expression_repeat1 = 273, + aux_sym_gnu_asm_expression_repeat1 = 274, + aux_sym_gnu_asm_operand_list_repeat1 = 275, + aux_sym_gnu_asm_clobber_list_repeat1 = 276, + aux_sym_gnu_asm_goto_list_repeat1 = 277, + aux_sym_argument_list_repeat1 = 278, + aux_sym_initializer_list_repeat1 = 279, + aux_sym_initializer_pair_repeat1 = 280, + aux_sym_concatenated_string_repeat1 = 281, + aux_sym_string_literal_repeat1 = 282, + alias_sym_field_identifier = 283, + alias_sym_statement_identifier = 284, + alias_sym_type_identifier = 285, }; static const char * const ts_symbol_names[] = { @@ -403,6 +415,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", [anon_sym__Generic] = "_Generic", + [anon_sym_asm] = "asm", + [anon_sym___asm__] = "__asm__", [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", @@ -528,6 +542,12 @@ static const char * const ts_symbol_names[] = { [sym_generic_expression] = "generic_expression", [sym_subscript_expression] = "subscript_expression", [sym_call_expression] = "call_expression", + [sym_gnu_asm_expression] = "gnu_asm_expression", + [sym_gnu_asm_qualifier] = "gnu_asm_qualifier", + [sym_gnu_asm_operand_list] = "gnu_asm_operand_list", + [sym_gnu_asm_operand] = "gnu_asm_operand", + [sym_gnu_asm_clobber_list] = "gnu_asm_clobber_list", + [sym_gnu_asm_goto_list] = "gnu_asm_goto_list", [sym_argument_list] = "argument_list", [sym_field_expression] = "field_expression", [sym_compound_literal_expression] = "compound_literal_expression", @@ -559,6 +579,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_generic_expression_repeat1] = "generic_expression_repeat1", + [aux_sym_gnu_asm_expression_repeat1] = "gnu_asm_expression_repeat1", + [aux_sym_gnu_asm_operand_list_repeat1] = "gnu_asm_operand_list_repeat1", + [aux_sym_gnu_asm_clobber_list_repeat1] = "gnu_asm_clobber_list_repeat1", + [aux_sym_gnu_asm_goto_list_repeat1] = "gnu_asm_goto_list_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", @@ -680,6 +704,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, [anon_sym__Generic] = anon_sym__Generic, + [anon_sym_asm] = anon_sym_asm, + [anon_sym___asm__] = anon_sym___asm__, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [sym_number_literal] = sym_number_literal, @@ -805,6 +831,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_generic_expression] = sym_generic_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_call_expression] = sym_call_expression, + [sym_gnu_asm_expression] = sym_gnu_asm_expression, + [sym_gnu_asm_qualifier] = sym_gnu_asm_qualifier, + [sym_gnu_asm_operand_list] = sym_gnu_asm_operand_list, + [sym_gnu_asm_operand] = sym_gnu_asm_operand, + [sym_gnu_asm_clobber_list] = sym_gnu_asm_clobber_list, + [sym_gnu_asm_goto_list] = sym_gnu_asm_goto_list, [sym_argument_list] = sym_argument_list, [sym_field_expression] = sym_field_expression, [sym_compound_literal_expression] = sym_compound_literal_expression, @@ -836,6 +868,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, [aux_sym_generic_expression_repeat1] = aux_sym_generic_expression_repeat1, + [aux_sym_gnu_asm_expression_repeat1] = aux_sym_gnu_asm_expression_repeat1, + [aux_sym_gnu_asm_operand_list_repeat1] = aux_sym_gnu_asm_operand_list_repeat1, + [aux_sym_gnu_asm_clobber_list_repeat1] = aux_sym_gnu_asm_clobber_list_repeat1, + [aux_sym_gnu_asm_goto_list_repeat1] = aux_sym_gnu_asm_goto_list_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, [aux_sym_initializer_pair_repeat1] = aux_sym_initializer_pair_repeat1, @@ -1287,6 +1323,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_asm] = { + .visible = true, + .named = false, + }, + [anon_sym___asm__] = { + .visible = true, + .named = false, + }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -1793,6 +1837,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_gnu_asm_expression] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_qualifier] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_operand_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_operand] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_clobber_list] = { + .visible = true, + .named = true, + }, + [sym_gnu_asm_goto_list] = { + .visible = true, + .named = true, + }, [sym_argument_list] = { .visible = true, .named = true, @@ -1917,6 +1985,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_gnu_asm_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_operand_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_clobber_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_gnu_asm_goto_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_argument_list_repeat1] = { .visible = false, .named = false, @@ -1955,28 +2039,37 @@ enum { field_alternative = 1, field_argument = 2, field_arguments = 3, - field_body = 4, - field_condition = 5, - field_consequence = 6, - field_declarator = 7, - field_designator = 8, - field_directive = 9, - field_field = 10, - field_function = 11, - field_index = 12, - 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_assembly_code = 4, + field_body = 5, + field_clobbers = 6, + field_condition = 7, + field_consequence = 8, + field_constraint = 9, + field_declarator = 10, + field_designator = 11, + field_directive = 12, + field_field = 13, + field_function = 14, + field_goto_labels = 15, + field_index = 16, + field_initializer = 17, + field_input_operands = 18, + field_label = 19, + field_left = 20, + field_name = 21, + field_operand = 22, + field_operator = 23, + field_output_operands = 24, + field_parameters = 25, + field_path = 26, + field_prefix = 27, + field_register = 28, + field_right = 29, + field_size = 30, + field_symbol = 31, + field_type = 32, + field_update = 33, + field_value = 34, }; static const char * const ts_field_names[] = { @@ -1984,25 +2077,34 @@ static const char * const ts_field_names[] = { [field_alternative] = "alternative", [field_argument] = "argument", [field_arguments] = "arguments", + [field_assembly_code] = "assembly_code", [field_body] = "body", + [field_clobbers] = "clobbers", [field_condition] = "condition", [field_consequence] = "consequence", + [field_constraint] = "constraint", [field_declarator] = "declarator", [field_designator] = "designator", [field_directive] = "directive", [field_field] = "field", [field_function] = "function", + [field_goto_labels] = "goto_labels", [field_index] = "index", [field_initializer] = "initializer", + [field_input_operands] = "input_operands", [field_label] = "label", [field_left] = "left", [field_name] = "name", + [field_operand] = "operand", [field_operator] = "operator", + [field_output_operands] = "output_operands", [field_parameters] = "parameters", [field_path] = "path", [field_prefix] = "prefix", + [field_register] = "register", [field_right] = "right", [field_size] = "size", + [field_symbol] = "symbol", [field_type] = "type", [field_update] = "update", [field_value] = "value", @@ -2051,46 +2153,67 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [41] = {.index = 61, .length = 2}, [43] = {.index = 63, .length = 2}, [44] = {.index = 65, .length = 1}, - [45] = {.index = 66, .length = 2}, - [46] = {.index = 68, .length = 1}, + [45] = {.index = 66, .length = 1}, + [46] = {.index = 67, .length = 2}, [47] = {.index = 69, .length = 1}, - [48] = {.index = 70, .length = 2}, - [49] = {.index = 72, .length = 3}, - [50] = {.index = 75, .length = 2}, - [51] = {.index = 77, .length = 3}, - [52] = {.index = 80, .length = 2}, - [53] = {.index = 82, .length = 2}, - [54] = {.index = 84, .length = 3}, - [55] = {.index = 87, .length = 2}, - [56] = {.index = 89, .length = 2}, - [57] = {.index = 91, .length = 1}, - [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 3}, - [60] = {.index = 97, .length = 2}, - [61] = {.index = 99, .length = 2}, - [62] = {.index = 101, .length = 3}, - [63] = {.index = 104, .length = 2}, - [64] = {.index = 106, .length = 1}, - [65] = {.index = 107, .length = 2}, - [66] = {.index = 109, .length = 3}, - [67] = {.index = 112, .length = 2}, - [68] = {.index = 114, .length = 1}, - [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}, - [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}, + [48] = {.index = 70, .length = 1}, + [49] = {.index = 71, .length = 2}, + [50] = {.index = 73, .length = 3}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 3}, + [53] = {.index = 81, .length = 2}, + [54] = {.index = 83, .length = 2}, + [55] = {.index = 85, .length = 3}, + [56] = {.index = 88, .length = 2}, + [57] = {.index = 90, .length = 2}, + [58] = {.index = 92, .length = 1}, + [59] = {.index = 93, .length = 2}, + [60] = {.index = 95, .length = 3}, + [61] = {.index = 98, .length = 2}, + [62] = {.index = 100, .length = 2}, + [63] = {.index = 102, .length = 3}, + [64] = {.index = 105, .length = 2}, + [65] = {.index = 107, .length = 1}, + [66] = {.index = 108, .length = 2}, + [67] = {.index = 110, .length = 1}, + [68] = {.index = 111, .length = 1}, + [69] = {.index = 112, .length = 2}, + [70] = {.index = 114, .length = 3}, + [71] = {.index = 117, .length = 2}, + [72] = {.index = 119, .length = 1}, + [74] = {.index = 120, .length = 3}, + [75] = {.index = 123, .length = 1}, + [76] = {.index = 124, .length = 2}, + [77] = {.index = 126, .length = 2}, + [78] = {.index = 128, .length = 3}, + [79] = {.index = 131, .length = 2}, + [80] = {.index = 133, .length = 1}, + [81] = {.index = 134, .length = 2}, + [82] = {.index = 136, .length = 2}, + [83] = {.index = 138, .length = 2}, + [84] = {.index = 140, .length = 2}, + [85] = {.index = 142, .length = 3}, + [86] = {.index = 145, .length = 3}, + [87] = {.index = 148, .length = 2}, + [88] = {.index = 150, .length = 2}, + [89] = {.index = 152, .length = 1}, + [90] = {.index = 153, .length = 4}, + [91] = {.index = 157, .length = 3}, + [92] = {.index = 160, .length = 3}, + [93] = {.index = 163, .length = 4}, + [94] = {.index = 167, .length = 3}, + [95] = {.index = 170, .length = 3}, + [96] = {.index = 173, .length = 2}, + [97] = {.index = 175, .length = 2}, + [98] = {.index = 29, .length = 1}, + [99] = {.index = 177, .length = 5}, + [100] = {.index = 182, .length = 4}, + [101] = {.index = 186, .length = 4}, + [102] = {.index = 190, .length = 2}, + [103] = {.index = 192, .length = 2}, + [104] = {.index = 194, .length = 5}, + [105] = {.index = 199, .length = 2}, + [106] = {.index = 201, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2201,134 +2324,203 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [65] = {field_type, 2}, [66] = + {field_assembly_code, 2}, + [67] = {field_name, 0}, {field_type, 2}, - [68] = - {field_declarator, 2}, [69] = - {field_declarator, 0}, + {field_declarator, 2}, [70] = {field_declarator, 0}, + [71] = + {field_declarator, 0}, {field_value, 2}, - [72] = + [73] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [75] = + [76] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [77] = + [78] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [80] = + [81] = {field_argument, 0}, {field_index, 2}, - [82] = + [83] = {field_alternative, 3}, {field_condition, 0}, - [84] = + [85] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [87] = + [88] = {field_alternative, 3}, {field_condition, 1}, - [89] = + [90] = {field_alternative, 3}, {field_name, 1}, - [91] = - {field_size, 1}, [92] = + {field_size, 1}, + [93] = {field_declarator, 3}, {field_type, 1}, - [94] = + [95] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [97] = + [98] = {field_declarator, 3}, {field_type, 2}, - [99] = + [100] = {field_name, 0}, {field_value, 2}, - [101] = + [102] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [104] = + [105] = {field_body, 1}, {field_condition, 3}, - [106] = - {field_declarator, 3}, [107] = + {field_operand, 1}, + [108] = + {field_assembly_code, 2}, + {field_output_operands, 3}, + [110] = + {field_assembly_code, 3}, + [111] = + {field_declarator, 3}, + [112] = {field_declarator, 0}, {field_size, 2}, - [109] = + [114] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [112] = + [117] = {field_alternative, 4}, {field_condition, 1}, - [114] = + [119] = {field_size, 2}, - [115] = + [120] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, - [118] = + [123] = {field_body, 5}, - [119] = + [124] = {field_body, 5}, {field_initializer, 2}, - [121] = + [126] = + {field_operand, 1}, + {field_operand, 2, .inherited = true}, + [128] = + {field_assembly_code, 2}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [131] = + {field_assembly_code, 3}, + {field_output_operands, 4}, + [133] = {field_declarator, 4}, - [122] = + [134] = {field_declarator, 0}, {field_size, 3}, - [124] = + [136] = {field_designator, 0}, {field_value, 2}, - [126] = + [138] = {field_body, 6}, {field_update, 4}, - [128] = + [140] = {field_body, 6}, {field_condition, 3}, - [130] = + [142] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [133] = + [145] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [136] = + [148] = {field_body, 6}, {field_initializer, 2}, - [138] = + [150] = + {field_operand, 0, .inherited = true}, + {field_operand, 1, .inherited = true}, + [152] = + {field_register, 1}, + [153] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [157] = + {field_assembly_code, 3}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [160] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [141] = + [163] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [145] = + [167] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [148] = + [170] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [151] = + [173] = + {field_constraint, 0}, + {field_value, 2}, + [175] = + {field_register, 1}, + {field_register, 2, .inherited = true}, + [177] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_goto_labels, 6}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [182] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [186] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, + [190] = + {field_register, 0, .inherited = true}, + {field_register, 1, .inherited = true}, + [192] = + {field_label, 1}, + {field_label, 2, .inherited = true}, + [194] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_goto_labels, 7}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [199] = + {field_label, 0, .inherited = true}, + {field_label, 1, .inherited = true}, + [201] = + {field_constraint, 3}, + {field_symbol, 1}, + {field_value, 5}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2363,7 +2555,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [43] = { [2] = alias_sym_type_identifier, }, - [69] = { + [73] = { [1] = alias_sym_field_identifier, }, }; @@ -2378,64 +2570,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 2, - [5] = 2, + [5] = 5, [6] = 6, - [7] = 7, - [8] = 2, - [9] = 7, + [7] = 5, + [8] = 3, + [9] = 2, [10] = 6, - [11] = 11, + [11] = 5, [12] = 6, - [13] = 7, - [14] = 11, - [15] = 15, - [16] = 11, - [17] = 11, - [18] = 7, - [19] = 6, + [13] = 6, + [14] = 3, + [15] = 2, + [16] = 16, + [17] = 17, + [18] = 3, + [19] = 5, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 20, - [25] = 25, - [26] = 21, - [27] = 27, - [28] = 22, - [29] = 27, - [30] = 25, - [31] = 27, - [32] = 25, - [33] = 33, - [34] = 27, + [24] = 24, + [25] = 24, + [26] = 26, + [27] = 26, + [28] = 28, + [29] = 20, + [30] = 21, + [31] = 26, + [32] = 22, + [33] = 20, + [34] = 21, [35] = 22, - [36] = 21, - [37] = 21, - [38] = 25, - [39] = 20, - [40] = 20, - [41] = 41, - [42] = 22, + [36] = 24, + [37] = 20, + [38] = 22, + [39] = 39, + [40] = 26, + [41] = 21, + [42] = 24, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, [48] = 47, - [49] = 46, - [50] = 46, - [51] = 44, - [52] = 43, - [53] = 45, - [54] = 46, - [55] = 47, - [56] = 43, - [57] = 44, - [58] = 45, - [59] = 44, - [60] = 43, - [61] = 45, - [62] = 47, + [49] = 43, + [50] = 47, + [51] = 46, + [52] = 45, + [53] = 47, + [54] = 44, + [55] = 45, + [56] = 44, + [57] = 43, + [58] = 43, + [59] = 46, + [60] = 46, + [61] = 44, + [62] = 45, [63] = 63, [64] = 63, [65] = 63, @@ -2498,464 +2690,464 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [122] = 122, [123] = 123, [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, - [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, + [125] = 67, + [126] = 126, + [127] = 127, + [128] = 93, + [129] = 73, + [130] = 126, + [131] = 131, + [132] = 91, + [133] = 133, + [134] = 134, + [135] = 134, + [136] = 136, + [137] = 68, + [138] = 83, + [139] = 127, + [140] = 84, + [141] = 141, + [142] = 142, + [143] = 87, + [144] = 144, + [145] = 103, + [146] = 90, + [147] = 127, + [148] = 148, + [149] = 95, + [150] = 150, + [151] = 92, + [152] = 69, + [153] = 150, + [154] = 154, + [155] = 155, + [156] = 86, + [157] = 157, + [158] = 74, + [159] = 75, + [160] = 76, + [161] = 77, + [162] = 88, + [163] = 92, + [164] = 73, + [165] = 81, + [166] = 82, + [167] = 126, + [168] = 85, + [169] = 99, + [170] = 97, + [171] = 131, + [172] = 69, + [173] = 78, + [174] = 70, + [175] = 71, + [176] = 72, + [177] = 177, + [178] = 79, + [179] = 91, + [180] = 133, + [181] = 181, + [182] = 157, + [183] = 183, + [184] = 136, + [185] = 86, + [186] = 94, + [187] = 96, + [188] = 101, + [189] = 98, + [190] = 90, + [191] = 80, + [192] = 100, + [193] = 193, + [194] = 101, + [195] = 144, + [196] = 196, + [197] = 80, + [198] = 96, + [199] = 98, + [200] = 100, + [201] = 196, + [202] = 196, + [203] = 94, + [204] = 78, + [205] = 144, + [206] = 193, + [207] = 193, + [208] = 80, + [209] = 101, + [210] = 142, + [211] = 69, + [212] = 83, + [213] = 92, + [214] = 157, + [215] = 150, + [216] = 72, + [217] = 93, + [218] = 102, + [219] = 102, + [220] = 84, + [221] = 141, + [222] = 181, + [223] = 94, [224] = 93, - [225] = 71, - [226] = 97, - [227] = 103, - [228] = 82, - [229] = 94, - [230] = 73, - [231] = 79, - [232] = 84, - [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, - [313] = 120, + [225] = 89, + [226] = 78, + [227] = 73, + [228] = 177, + [229] = 87, + [230] = 131, + [231] = 91, + [232] = 103, + [233] = 71, + [234] = 70, + [235] = 148, + [236] = 133, + [237] = 95, + [238] = 97, + [239] = 154, + [240] = 134, + [241] = 136, + [242] = 155, + [243] = 155, + [244] = 99, + [245] = 85, + [246] = 83, + [247] = 154, + [248] = 84, + [249] = 141, + [250] = 87, + [251] = 148, + [252] = 103, + [253] = 68, + [254] = 74, + [255] = 75, + [256] = 181, + [257] = 82, + [258] = 76, + [259] = 141, + [260] = 77, + [261] = 177, + [262] = 148, + [263] = 95, + [264] = 154, + [265] = 155, + [266] = 79, + [267] = 89, + [268] = 81, + [269] = 181, + [270] = 74, + [271] = 75, + [272] = 136, + [273] = 142, + [274] = 134, + [275] = 88, + [276] = 102, + [277] = 193, + [278] = 76, + [279] = 77, + [280] = 177, + [281] = 196, + [282] = 183, + [283] = 79, + [284] = 100, + [285] = 98, + [286] = 96, + [287] = 144, + [288] = 90, + [289] = 127, + [290] = 150, + [291] = 86, + [292] = 133, + [293] = 157, + [294] = 72, + [295] = 71, + [296] = 68, + [297] = 70, + [298] = 131, + [299] = 126, + [300] = 142, + [301] = 97, + [302] = 89, + [303] = 99, + [304] = 85, + [305] = 82, + [306] = 81, + [307] = 183, + [308] = 88, + [309] = 183, + [310] = 109, + [311] = 120, + [312] = 106, + [313] = 124, [314] = 123, - [315] = 124, - [316] = 250, - [317] = 271, - [318] = 119, - [319] = 121, - [320] = 114, - [321] = 240, + [315] = 105, + [316] = 121, + [317] = 111, + [318] = 106, + [319] = 111, + [320] = 112, + [321] = 122, [322] = 116, - [323] = 110, - [324] = 118, - [325] = 289, - [326] = 252, - [327] = 107, - [328] = 118, - [329] = 119, - [330] = 255, - [331] = 117, - [332] = 117, - [333] = 110, - [334] = 285, - [335] = 260, - [336] = 115, - [337] = 108, - [338] = 241, - [339] = 104, - [340] = 111, - [341] = 289, - [342] = 106, - [343] = 251, - [344] = 111, - [345] = 242, - [346] = 104, - [347] = 115, - [348] = 105, + [323] = 108, + [324] = 104, + [325] = 122, + [326] = 110, + [327] = 111, + [328] = 104, + [329] = 114, + [330] = 105, + [331] = 105, + [332] = 119, + [333] = 118, + [334] = 117, + [335] = 113, + [336] = 110, + [337] = 104, + [338] = 116, + [339] = 116, + [340] = 110, + [341] = 115, + [342] = 119, + [343] = 117, + [344] = 107, + [345] = 107, + [346] = 114, + [347] = 119, + [348] = 118, [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, - [367] = 116, - [368] = 260, - [369] = 255, - [370] = 252, - [371] = 112, - [372] = 251, + [350] = 108, + [351] = 118, + [352] = 120, + [353] = 121, + [354] = 124, + [355] = 120, + [356] = 115, + [357] = 106, + [358] = 112, + [359] = 112, + [360] = 114, + [361] = 122, + [362] = 124, + [363] = 123, + [364] = 121, + [365] = 117, + [366] = 107, + [367] = 123, + [368] = 109, + [369] = 113, + [370] = 115, + [371] = 108, + [372] = 109, [373] = 373, [374] = 374, [375] = 374, - [376] = 373, - [377] = 67, + [376] = 374, + [377] = 374, [378] = 373, - [379] = 374, - [380] = 373, - [381] = 374, + [379] = 373, + [380] = 67, + [381] = 373, [382] = 382, - [383] = 383, - [384] = 67, + [383] = 67, + [384] = 384, [385] = 385, [386] = 386, [387] = 387, [388] = 388, [389] = 389, [390] = 390, - [391] = 390, + [391] = 391, [392] = 392, - [393] = 389, - [394] = 388, - [395] = 395, - [396] = 395, - [397] = 390, - [398] = 389, - [399] = 395, - [400] = 388, + [393] = 393, + [394] = 394, + [395] = 392, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 388, + [400] = 400, [401] = 401, - [402] = 401, - [403] = 401, - [404] = 401, - [405] = 401, - [406] = 401, - [407] = 401, - [408] = 401, - [409] = 409, + [402] = 396, + [403] = 403, + [404] = 403, + [405] = 405, + [406] = 388, + [407] = 407, + [408] = 396, + [409] = 392, [410] = 410, [411] = 411, [412] = 412, - [413] = 413, + [413] = 403, [414] = 414, [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, + [416] = 414, + [417] = 414, + [418] = 414, + [419] = 414, + [420] = 414, + [421] = 414, + [422] = 414, [423] = 423, [424] = 424, - [425] = 425, + [425] = 424, [426] = 426, - [427] = 411, - [428] = 411, + [427] = 424, + [428] = 428, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 432, + [433] = 433, [434] = 434, [435] = 435, - [436] = 432, - [437] = 432, + [436] = 436, + [437] = 437, [438] = 438, - [439] = 439, + [439] = 432, [440] = 440, [441] = 441, [442] = 442, - [443] = 442, + [443] = 443, [444] = 444, [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, + [446] = 437, + [447] = 441, + [448] = 441, [449] = 449, - [450] = 446, - [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, + [450] = 435, + [451] = 441, + [452] = 452, + [453] = 444, + [454] = 435, + [455] = 433, + [456] = 438, + [457] = 436, + [458] = 432, + [459] = 452, + [460] = 440, + [461] = 438, + [462] = 440, + [463] = 452, + [464] = 436, + [465] = 437, + [466] = 444, + [467] = 467, + [468] = 445, + [469] = 435, + [470] = 445, + [471] = 433, + [472] = 449, + [473] = 445, [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, + [475] = 433, + [476] = 436, + [477] = 477, + [478] = 444, + [479] = 452, + [480] = 437, + [481] = 432, + [482] = 440, + [483] = 449, + [484] = 438, + [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] = 485, [496] = 496, - [497] = 492, - [498] = 498, - [499] = 499, + [497] = 496, + [498] = 496, + [499] = 490, [500] = 500, [501] = 501, [502] = 502, - [503] = 503, - [504] = 489, + [503] = 496, + [504] = 504, [505] = 505, [506] = 506, [507] = 507, [508] = 508, [509] = 509, [510] = 510, - [511] = 511, - [512] = 511, - [513] = 510, - [514] = 508, + [511] = 507, + [512] = 512, + [513] = 509, + [514] = 505, [515] = 515, [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 506, [520] = 520, - [521] = 519, + [521] = 508, [522] = 522, [523] = 523, - [524] = 524, + [524] = 505, [525] = 525, [526] = 526, - [527] = 509, - [528] = 409, + [527] = 527, + [528] = 510, [529] = 529, - [530] = 509, - [531] = 511, - [532] = 525, - [533] = 510, - [534] = 515, - [535] = 535, - [536] = 536, + [530] = 522, + [531] = 531, + [532] = 515, + [533] = 533, + [534] = 512, + [535] = 516, + [536] = 516, [537] = 537, - [538] = 538, - [539] = 516, - [540] = 536, - [541] = 517, - [542] = 518, - [543] = 543, - [544] = 520, - [545] = 519, - [546] = 546, - [547] = 547, - [548] = 536, - [549] = 522, - [550] = 523, - [551] = 524, - [552] = 515, - [553] = 526, - [554] = 536, + [538] = 522, + [539] = 504, + [540] = 527, + [541] = 529, + [542] = 525, + [543] = 510, + [544] = 523, + [545] = 508, + [546] = 515, + [547] = 525, + [548] = 509, + [549] = 549, + [550] = 506, + [551] = 520, + [552] = 552, + [553] = 507, + [554] = 554, [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, - [581] = 538, - [582] = 517, + [556] = 529, + [557] = 557, + [558] = 515, + [559] = 504, + [560] = 504, + [561] = 561, + [562] = 537, + [563] = 507, + [564] = 516, + [565] = 527, + [566] = 566, + [567] = 537, + [568] = 537, + [569] = 522, + [570] = 529, + [571] = 525, + [572] = 505, + [573] = 523, + [574] = 510, + [575] = 520, + [576] = 506, + [577] = 508, + [578] = 527, + [579] = 523, + [580] = 557, + [581] = 520, + [582] = 423, [583] = 583, [584] = 584, [585] = 585, @@ -2974,9 +3166,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [598] = 598, [599] = 599, [600] = 600, - [601] = 601, + [601] = 382, [602] = 602, - [603] = 603, + [603] = 583, [604] = 604, [605] = 605, [606] = 606, @@ -2991,279 +3183,279 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [615] = 615, [616] = 616, [617] = 617, - [618] = 618, + [618] = 384, [619] = 619, [620] = 620, - [621] = 601, - [622] = 382, - [623] = 383, - [624] = 583, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, [625] = 625, - [626] = 625, - [627] = 625, - [628] = 625, - [629] = 619, - [630] = 588, - [631] = 592, - [632] = 609, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, [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, + [634] = 634, + [635] = 635, + [636] = 635, + [637] = 635, + [638] = 635, + [639] = 639, + [640] = 588, + [641] = 625, + [642] = 622, + [643] = 592, + [644] = 639, + [645] = 639, + [646] = 585, + [647] = 621, + [648] = 599, + [649] = 584, + [650] = 586, + [651] = 587, + [652] = 652, + [653] = 605, + [654] = 597, + [655] = 639, [656] = 589, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 382, - [663] = 117, - [664] = 664, - [665] = 588, - [666] = 619, - [667] = 667, - [668] = 587, + [657] = 590, + [658] = 591, + [659] = 617, + [660] = 594, + [661] = 595, + [662] = 619, + [663] = 663, + [664] = 632, + [665] = 665, + [666] = 610, + [667] = 628, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 602, - [673] = 121, - [674] = 108, + [672] = 382, + [673] = 599, + [674] = 106, [675] = 675, [676] = 676, - [677] = 677, - [678] = 110, + [677] = 111, + [678] = 595, [679] = 679, - [680] = 118, - [681] = 659, - [682] = 584, - [683] = 615, - [684] = 600, - [685] = 685, - [686] = 598, - [687] = 597, + [680] = 680, + [681] = 681, + [682] = 625, + [683] = 591, + [684] = 590, + [685] = 589, + [686] = 686, + [687] = 588, [688] = 688, - [689] = 689, - [690] = 593, - [691] = 608, - [692] = 692, - [693] = 590, - [694] = 586, - [695] = 383, - [696] = 696, + [689] = 597, + [690] = 587, + [691] = 117, + [692] = 594, + [693] = 384, + [694] = 694, + [695] = 115, + [696] = 586, [697] = 697, - [698] = 119, + [698] = 605, [699] = 699, - [700] = 700, - [701] = 440, + [700] = 669, + [701] = 701, [702] = 702, - [703] = 703, - [704] = 439, - [705] = 110, - [706] = 117, + [703] = 110, + [704] = 119, + [705] = 705, + [706] = 592, [707] = 707, - [708] = 667, - [709] = 121, + [708] = 708, + [709] = 709, [710] = 710, - [711] = 667, - [712] = 685, - [713] = 688, - [714] = 669, - [715] = 671, - [716] = 685, - [717] = 692, - [718] = 688, - [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, - [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, - [749] = 749, - [750] = 696, - [751] = 121, - [752] = 669, - [753] = 671, - [754] = 675, - [755] = 732, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 757, - [764] = 764, + [711] = 711, + [712] = 554, + [713] = 713, + [714] = 566, + [715] = 702, + [716] = 716, + [717] = 702, + [718] = 694, + [719] = 676, + [720] = 720, + [721] = 694, + [722] = 722, + [723] = 707, + [724] = 716, + [725] = 697, + [726] = 726, + [727] = 106, + [728] = 705, + [729] = 701, + [730] = 708, + [731] = 680, + [732] = 676, + [733] = 679, + [734] = 675, + [735] = 681, + [736] = 707, + [737] = 688, + [738] = 697, + [739] = 115, + [740] = 119, + [741] = 708, + [742] = 110, + [743] = 111, + [744] = 106, + [745] = 111, + [746] = 722, + [747] = 686, + [748] = 686, + [749] = 117, + [750] = 680, + [751] = 751, + [752] = 701, + [753] = 110, + [754] = 754, + [755] = 119, + [756] = 115, + [757] = 722, + [758] = 705, + [759] = 117, + [760] = 688, + [761] = 681, + [762] = 722, + [763] = 679, + [764] = 675, [765] = 765, - [766] = 765, + [766] = 766, [767] = 767, [768] = 768, - [769] = 769, - [770] = 762, + [769] = 768, + [770] = 768, [771] = 771, [772] = 772, - [773] = 768, + [773] = 773, [774] = 774, - [775] = 756, - [776] = 776, - [777] = 777, + [775] = 775, + [776] = 772, + [777] = 771, [778] = 778, - [779] = 762, - [780] = 774, - [781] = 771, - [782] = 772, - [783] = 771, - [784] = 784, - [785] = 772, - [786] = 776, - [787] = 762, - [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, + [779] = 779, + [780] = 773, + [781] = 774, + [782] = 775, + [783] = 768, + [784] = 773, + [785] = 774, + [786] = 775, + [787] = 787, + [788] = 788, + [789] = 787, + [790] = 790, + [791] = 791, + [792] = 767, + [793] = 793, + [794] = 774, + [795] = 795, + [796] = 779, + [797] = 788, + [798] = 787, + [799] = 793, + [800] = 793, + [801] = 801, + [802] = 779, + [803] = 779, + [804] = 788, + [805] = 790, + [806] = 767, + [807] = 791, + [808] = 787, + [809] = 793, + [810] = 810, [811] = 771, - [812] = 764, - [813] = 593, - [814] = 814, - [815] = 815, - [816] = 816, + [812] = 791, + [813] = 773, + [814] = 767, + [815] = 790, + [816] = 788, [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 814, - [822] = 822, + [818] = 771, + [819] = 775, + [820] = 791, + [821] = 821, + [822] = 790, [823] = 823, [824] = 824, - [825] = 619, + [825] = 825, [826] = 826, [827] = 827, [828] = 828, - [829] = 814, + [829] = 829, [830] = 830, - [831] = 608, - [832] = 832, + [831] = 826, + [832] = 605, [833] = 833, [834] = 834, - [835] = 835, - [836] = 586, - [837] = 835, - [838] = 587, - [839] = 839, - [840] = 584, - [841] = 841, - [842] = 588, - [843] = 590, + [835] = 597, + [836] = 836, + [837] = 599, + [838] = 838, + [839] = 595, + [840] = 594, + [841] = 591, + [842] = 590, + [843] = 589, [844] = 844, [845] = 845, - [846] = 846, - [847] = 597, - [848] = 835, - [849] = 849, - [850] = 850, + [846] = 588, + [847] = 587, + [848] = 586, + [849] = 826, + [850] = 845, [851] = 851, - [852] = 835, - [853] = 598, - [854] = 814, + [852] = 845, + [853] = 625, + [854] = 854, [855] = 855, - [856] = 600, + [856] = 856, [857] = 857, - [858] = 602, - [859] = 615, + [858] = 858, + [859] = 592, [860] = 860, - [861] = 860, - [862] = 860, - [863] = 860, + [861] = 861, + [862] = 862, + [863] = 863, [864] = 864, [865] = 865, [866] = 866, - [867] = 867, - [868] = 868, + [867] = 845, + [868] = 826, [869] = 869, [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 872, - [875] = 873, - [876] = 658, - [877] = 872, + [871] = 870, + [872] = 870, + [873] = 870, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, [878] = 878, - [879] = 873, - [880] = 873, - [881] = 872, + [879] = 879, + [880] = 880, + [881] = 881, [882] = 882, [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, + [884] = 663, + [885] = 882, + [886] = 883, + [887] = 882, + [888] = 883, + [889] = 883, + [890] = 882, [891] = 891, [892] = 892, [893] = 893, @@ -3280,153 +3472,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [904] = 904, [905] = 905, [906] = 906, - [907] = 904, - [908] = 906, - [909] = 905, + [907] = 907, + [908] = 908, + [909] = 909, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, + [915] = 914, [916] = 916, [917] = 917, [918] = 918, - [919] = 919, - [920] = 920, + [919] = 918, + [920] = 917, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 922, [926] = 926, [927] = 927, [928] = 928, - [929] = 924, + [929] = 929, [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, - [936] = 925, - [937] = 937, + [936] = 612, + [937] = 921, [938] = 938, - [939] = 928, - [940] = 923, + [939] = 939, + [940] = 940, [941] = 941, [942] = 942, - [943] = 926, - [944] = 938, + [943] = 924, + [944] = 929, [945] = 945, - [946] = 913, - [947] = 914, - [948] = 915, - [949] = 916, - [950] = 950, - [951] = 917, - [952] = 918, - [953] = 927, - [954] = 954, - [955] = 919, - [956] = 927, - [957] = 957, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 921, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 947, + [955] = 945, + [956] = 942, + [957] = 941, [958] = 958, - [959] = 594, + [959] = 959, [960] = 960, [961] = 961, - [962] = 927, - [963] = 923, - [964] = 964, - [965] = 965, - [966] = 920, - [967] = 967, - [968] = 922, - [969] = 969, + [962] = 923, + [963] = 963, + [964] = 939, + [965] = 926, + [966] = 966, + [967] = 923, + [968] = 921, + [969] = 949, [970] = 970, - [971] = 921, - [972] = 930, + [971] = 971, + [972] = 972, [973] = 973, - [974] = 974, - [975] = 932, - [976] = 933, - [977] = 934, - [978] = 964, - [979] = 979, - [980] = 979, - [981] = 935, - [982] = 937, - [983] = 941, + [974] = 940, + [975] = 961, + [976] = 934, + [977] = 977, + [978] = 978, + [979] = 612, + [980] = 952, + [981] = 948, + [982] = 982, + [983] = 983, [984] = 984, - [985] = 945, - [986] = 950, - [987] = 957, - [988] = 594, - [989] = 989, - [990] = 958, - [991] = 991, - [992] = 960, - [993] = 961, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 963, + [990] = 990, + [991] = 977, + [992] = 931, + [993] = 993, [994] = 994, [995] = 995, [996] = 996, - [997] = 997, - [998] = 998, - [999] = 931, - [1000] = 1000, - [1001] = 1001, - [1002] = 973, - [1003] = 979, - [1004] = 970, - [1005] = 970, - [1006] = 1006, - [1007] = 979, - [1008] = 1008, - [1009] = 1009, + [997] = 932, + [998] = 933, + [999] = 951, + [1000] = 946, + [1001] = 971, + [1002] = 970, + [1003] = 959, + [1004] = 935, + [1005] = 927, + [1006] = 978, + [1007] = 1007, + [1008] = 928, + [1009] = 930, [1010] = 1010, - [1011] = 1011, - [1012] = 721, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1015, - [1017] = 1015, - [1018] = 1018, - [1019] = 1019, - [1020] = 1018, - [1021] = 1019, + [1011] = 953, + [1012] = 1012, + [1013] = 958, + [1014] = 994, + [1015] = 994, + [1016] = 1016, + [1017] = 1017, + [1018] = 977, + [1019] = 977, + [1020] = 1020, + [1021] = 765, [1022] = 1022, [1023] = 1023, - [1024] = 1023, - [1025] = 1023, - [1026] = 1019, - [1027] = 1019, - [1028] = 1018, - [1029] = 1018, - [1030] = 1023, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, + [1024] = 1024, + [1025] = 1025, + [1026] = 1025, + [1027] = 1025, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1030, + [1032] = 1028, + [1033] = 1028, [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 1032, - [1038] = 1038, - [1039] = 1036, - [1040] = 1040, - [1041] = 1034, - [1042] = 1034, + [1035] = 1034, + [1036] = 1028, + [1037] = 1030, + [1038] = 1030, + [1039] = 1034, + [1040] = 1034, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1034, - [1046] = 1032, - [1047] = 1032, - [1048] = 1033, - [1049] = 1033, + [1045] = 1045, + [1046] = 1041, + [1047] = 1047, + [1048] = 1042, + [1049] = 1041, [1050] = 1050, - [1051] = 1036, - [1052] = 1036, - [1053] = 1053, + [1051] = 1043, + [1052] = 1052, + [1053] = 1044, [1054] = 1054, [1055] = 1055, [1056] = 1056, @@ -3434,60 +3626,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1062, - [1064] = 1062, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1062, + [1061] = 1043, + [1062] = 1042, + [1063] = 1063, + [1064] = 1043, + [1065] = 1044, + [1066] = 1044, + [1067] = 1041, + [1068] = 1068, [1069] = 1069, - [1070] = 1070, - [1071] = 1071, + [1070] = 1069, + [1071] = 1069, [1072] = 1072, - [1073] = 1073, + [1073] = 1069, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1073, - [1079] = 1071, + [1078] = 1078, + [1079] = 1079, [1080] = 1080, - [1081] = 1072, + [1081] = 1081, [1082] = 1082, - [1083] = 1073, - [1084] = 1073, - [1085] = 1071, - [1086] = 1071, - [1087] = 1072, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1085, [1088] = 1088, - [1089] = 1072, + [1089] = 1086, [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1091, + [1091] = 1084, + [1092] = 1084, + [1093] = 1084, [1094] = 1094, - [1095] = 1095, + [1095] = 1086, [1096] = 1096, - [1097] = 1091, - [1098] = 1098, + [1097] = 1085, + [1098] = 1086, [1099] = 1099, [1100] = 1100, - [1101] = 1091, - [1102] = 1102, + [1101] = 1101, + [1102] = 1085, [1103] = 1103, [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 1110, + [1109] = 1104, + [1110] = 1104, [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1114, + [1114] = 1104, [1115] = 1115, [1116] = 1116, [1117] = 1117, @@ -3508,11 +3700,11 @@ 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, @@ -3523,351 +3715,408 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1149, + [1150] = 1150, [1151] = 1151, [1152] = 1152, [1153] = 1153, - [1154] = 1153, + [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1153, - [1158] = 1153, - [1159] = 1153, - [1160] = 1149, + [1156] = 1149, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1155, - [1164] = 1153, - [1165] = 1155, - [1166] = 1153, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1170, + [1170] = 1149, [1171] = 1171, [1172] = 1172, - [1173] = 1173, + [1173] = 1172, [1174] = 1174, [1175] = 1175, - [1176] = 1176, - [1177] = 1170, - [1178] = 1172, - [1179] = 1172, - [1180] = 1180, + [1176] = 1172, + [1177] = 1177, + [1178] = 1171, + [1179] = 1179, + [1180] = 1171, [1181] = 1181, - [1182] = 1182, - [1183] = 1183, + [1182] = 1171, + [1183] = 1171, [1184] = 1184, - [1185] = 1185, + [1185] = 1171, [1186] = 1186, - [1187] = 1182, + [1187] = 1187, [1188] = 1188, - [1189] = 1189, - [1190] = 1190, + [1189] = 1177, + [1190] = 1177, [1191] = 1191, - [1192] = 1190, + [1192] = 1192, [1193] = 1193, - [1194] = 1183, - [1195] = 1195, + [1194] = 1194, + [1195] = 1171, [1196] = 1196, - [1197] = 1188, - [1198] = 1198, + [1197] = 1197, + [1198] = 1196, [1199] = 1199, [1200] = 1200, - [1201] = 1185, - [1202] = 1184, - [1203] = 1184, - [1204] = 1183, - [1205] = 1190, - [1206] = 1184, - [1207] = 1185, - [1208] = 1183, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1196, + [1207] = 1207, + [1208] = 1208, [1209] = 1209, - [1210] = 1170, - [1211] = 1185, - [1212] = 1188, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1175, - [1216] = 1182, + [1215] = 1215, + [1216] = 1216, [1217] = 1217, - [1218] = 1172, + [1218] = 1218, [1219] = 1219, - [1220] = 1209, - [1221] = 1170, + [1220] = 1203, + [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1190, - [1228] = 1228, - [1229] = 1229, + [1227] = 1227, + [1228] = 1224, + [1229] = 1218, [1230] = 1230, - [1231] = 1231, - [1232] = 1232, + [1231] = 1222, + [1232] = 1217, [1233] = 1233, [1234] = 1234, - [1235] = 1235, + [1235] = 1222, [1236] = 1236, [1237] = 1237, - [1238] = 1238, - [1239] = 1239, + [1238] = 1224, + [1239] = 1215, [1240] = 1240, [1241] = 1241, - [1242] = 1236, - [1243] = 1231, + [1242] = 1242, + [1243] = 1214, [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, + [1245] = 1245, + [1246] = 1214, + [1247] = 1224, + [1248] = 1248, + [1249] = 1249, + [1250] = 1215, + [1251] = 1251, + [1252] = 1203, + [1253] = 1253, + [1254] = 1213, + [1255] = 1213, + [1256] = 1256, + [1257] = 1234, + [1258] = 1196, + [1259] = 1203, + [1260] = 1260, + [1261] = 1261, + [1262] = 1234, [1263] = 1263, - [1264] = 1231, - [1265] = 1239, - [1266] = 1235, + [1264] = 1264, + [1265] = 1215, + [1266] = 1266, [1267] = 1267, - [1268] = 1244, - [1269] = 1269, + [1268] = 1268, + [1269] = 1222, [1270] = 1270, - [1271] = 1244, - [1272] = 1244, - [1273] = 1239, - [1274] = 1244, - [1275] = 1237, + [1271] = 1271, + [1272] = 1214, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, [1276] = 1276, - [1277] = 1239, - [1278] = 1278, + [1277] = 1277, + [1278] = 1275, [1279] = 1279, - [1280] = 1231, - [1281] = 1236, + [1280] = 1280, + [1281] = 1277, [1282] = 1282, - [1283] = 1283, + [1283] = 1276, [1284] = 1284, - [1285] = 1237, + [1285] = 1277, [1286] = 1286, [1287] = 1287, - [1288] = 1288, - [1289] = 1240, - [1290] = 1229, - [1291] = 1291, + [1288] = 1282, + [1289] = 1277, + [1290] = 1286, + [1291] = 1282, [1292] = 1292, [1293] = 1293, [1294] = 1294, [1295] = 1295, - [1296] = 1296, + [1296] = 1277, [1297] = 1297, - [1298] = 1298, + [1298] = 1294, [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, + [1300] = 1275, + [1301] = 1293, + [1302] = 1282, + [1303] = 1277, [1304] = 1304, - [1305] = 1305, + [1305] = 1276, [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1297, - [1310] = 1310, - [1311] = 1291, - [1312] = 1312, + [1307] = 1306, + [1308] = 1286, + [1309] = 1293, + [1310] = 1304, + [1311] = 1286, + [1312] = 1306, [1313] = 1313, - [1314] = 1302, - [1315] = 1313, - [1316] = 1294, + [1314] = 1314, + [1315] = 1284, + [1316] = 1304, [1317] = 1317, [1318] = 1318, - [1319] = 1313, - [1320] = 1302, - [1321] = 1321, - [1322] = 1294, - [1323] = 1323, - [1324] = 1324, - [1325] = 1313, - [1326] = 1302, + [1319] = 1319, + [1320] = 1320, + [1321] = 1276, + [1322] = 1322, + [1323] = 1306, + [1324] = 1275, + [1325] = 1304, + [1326] = 1282, [1327] = 1327, - [1328] = 1294, - [1329] = 1310, - [1330] = 1330, + [1328] = 1328, + [1329] = 1277, + [1330] = 1282, [1331] = 1331, [1332] = 1332, - [1333] = 1307, - [1334] = 1305, - [1335] = 1335, - [1336] = 1297, + [1333] = 1333, + [1334] = 1284, + [1335] = 1282, + [1336] = 1336, [1337] = 1337, - [1338] = 1303, + [1338] = 1338, [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1302, + [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1299, - [1346] = 1296, + [1345] = 1345, + [1346] = 1346, [1347] = 1347, [1348] = 1348, [1349] = 1349, - [1350] = 1293, - [1351] = 1306, + [1350] = 1350, + [1351] = 1350, [1352] = 1352, - [1353] = 1298, - [1354] = 1295, - [1355] = 1294, - [1356] = 1339, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, [1357] = 1357, - [1358] = 1298, - [1359] = 1302, - [1360] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, [1361] = 1361, [1362] = 1362, - [1363] = 1317, - [1364] = 1312, - [1365] = 1294, - [1366] = 1366, - [1367] = 1339, - [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, - [1386] = 1312, + [1363] = 1363, + [1364] = 1364, + [1365] = 1364, + [1366] = 1362, + [1367] = 1361, + [1368] = 1360, + [1369] = 1369, + [1370] = 1346, + [1371] = 1339, + [1372] = 1372, + [1373] = 1340, + [1374] = 1347, + [1375] = 1375, + [1376] = 1346, + [1377] = 1339, + [1378] = 1378, + [1379] = 1340, + [1380] = 1356, + [1381] = 1353, + [1382] = 1346, + [1383] = 1339, + [1384] = 1384, + [1385] = 1340, + [1386] = 1386, [1387] = 1387, - [1388] = 1305, - [1389] = 1303, - [1390] = 1340, - [1391] = 1341, + [1388] = 1388, + [1389] = 1350, + [1390] = 1347, + [1391] = 1357, [1392] = 1343, - [1393] = 1299, - [1394] = 1296, - [1395] = 1330, - [1396] = 1331, - [1397] = 1347, - [1398] = 1398, - [1399] = 1348, - [1400] = 1293, - [1401] = 1306, - [1402] = 1337, - [1403] = 1352, - [1404] = 1298, + [1393] = 1341, + [1394] = 1394, + [1395] = 1340, + [1396] = 1396, + [1397] = 1386, + [1398] = 1338, + [1399] = 1384, + [1400] = 1339, + [1401] = 1401, + [1402] = 1344, + [1403] = 1345, + [1404] = 1353, [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, - [1441] = 1441, - [1442] = 1348, - [1443] = 1377, - [1444] = 1330, - [1445] = 1330, - [1446] = 1330, - [1447] = 1347, - [1448] = 1318, - [1449] = 1321, - [1450] = 1296, - [1451] = 1451, - [1452] = 1299, - [1453] = 1377, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1346, + [1410] = 1343, + [1411] = 1341, + [1412] = 1412, + [1413] = 1340, + [1414] = 1414, + [1415] = 1348, + [1416] = 1349, + [1417] = 1417, + [1418] = 1418, + [1419] = 1355, + [1420] = 1420, + [1421] = 1337, + [1422] = 1358, + [1423] = 554, + [1424] = 1396, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1354, + [1429] = 1361, + [1430] = 1352, + [1431] = 1363, + [1432] = 1364, + [1433] = 1362, + [1434] = 1406, + [1435] = 1360, + [1436] = 1396, + [1437] = 1437, + [1438] = 1369, + [1439] = 1420, + [1440] = 1372, + [1441] = 1375, + [1442] = 1442, + [1443] = 1443, + [1444] = 1375, + [1445] = 1372, + [1446] = 1356, + [1447] = 1447, + [1448] = 1448, + [1449] = 1353, + [1450] = 1369, + [1451] = 1384, + [1452] = 1387, + [1453] = 1388, [1454] = 1454, - [1455] = 1368, - [1456] = 1337, - [1457] = 1387, - [1458] = 1323, - [1459] = 1324, - [1460] = 1460, + [1455] = 1386, + [1456] = 1360, + [1457] = 1350, + [1458] = 1362, + [1459] = 1394, + [1460] = 1364, [1461] = 1461, - [1462] = 1462, - [1463] = 1335, - [1464] = 1327, - [1465] = 1343, - [1466] = 1341, - [1467] = 1340, - [1468] = 1303, - [1469] = 1387, - [1470] = 1305, - [1471] = 1307, + [1462] = 1347, + [1463] = 1338, + [1464] = 1417, + [1465] = 1357, + [1466] = 1339, + [1467] = 1420, + [1468] = 1356, + [1469] = 1469, + [1470] = 1343, + [1471] = 1341, [1472] = 1472, - [1473] = 1335, - [1474] = 1332, - [1475] = 1310, - [1476] = 1476, + [1473] = 1354, + [1474] = 1412, + [1475] = 1352, + [1476] = 1340, [1477] = 1477, - [1478] = 1387, - [1479] = 1479, - [1480] = 1480, - [1481] = 1335, - [1482] = 440, - [1483] = 1331, - [1484] = 1460, - [1485] = 439, - [1486] = 1460, - [1487] = 1330, - [1488] = 1460, + [1478] = 1406, + [1479] = 1363, + [1480] = 1387, + [1481] = 1388, + [1482] = 1401, + [1483] = 1396, + [1484] = 1484, + [1485] = 1394, + [1486] = 1338, + [1487] = 1339, + [1488] = 1344, + [1489] = 1345, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1401, + [1494] = 1344, + [1495] = 1354, + [1496] = 1345, + [1497] = 1352, + [1498] = 1498, + [1499] = 1499, + [1500] = 1406, + [1501] = 1387, + [1502] = 1387, + [1503] = 1387, + [1504] = 1408, + [1505] = 1505, + [1506] = 1408, + [1507] = 1505, + [1508] = 1346, + [1509] = 1509, + [1510] = 1346, + [1511] = 1511, + [1512] = 1408, + [1513] = 1348, + [1514] = 1490, + [1515] = 1349, + [1516] = 1516, + [1517] = 1517, + [1518] = 1348, + [1519] = 1349, + [1520] = 1437, + [1521] = 1521, + [1522] = 1394, + [1523] = 1355, + [1524] = 1337, + [1525] = 1525, + [1526] = 1490, + [1527] = 1527, + [1528] = 1358, + [1529] = 1529, + [1530] = 1437, + [1531] = 1355, + [1532] = 1337, + [1533] = 1358, + [1534] = 1534, + [1535] = 1490, + [1536] = 1536, + [1537] = 566, + [1538] = 1437, + [1539] = 1539, + [1540] = 1361, + [1541] = 1525, + [1542] = 1388, + [1543] = 1525, + [1544] = 1387, + [1545] = 1525, }; 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,754 +4195,732 @@ 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 <= 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 < 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_2(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2707 + return (c < 43494 + ? (c < 4186 + ? (c < 2703 ? (c < 1969 ? (c < 908 ? (c < 710 @@ -4772,757 +4999,735 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c >= 2417 && c <= 2432) : c <= 2444) : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2579 - ? (c < 2527 + : (c <= 2480 || (c < 2575 + ? (c < 2524 ? (c < 2493 ? (c < 2486 ? c == 2482 : c <= 2489) - : (c <= 2493 || (c < 2524 - ? c == 2510 - : 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 < 3253 - ? (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 < 3114 - ? (c < 2990 - ? (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 <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : 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 < 2821 + ? (c < 2809 + ? (c >= 2784 && c <= 2785) + : 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 < 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 <= 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 < 4301 + : c <= 4238))) + : (c <= 4293 || (c < 4304 + ? (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 <= 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 < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (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 < 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 < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (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 < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) + : (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 < 8130 - ? (c < 8118 + : (c <= 8025 || c == 8027)) + : (c <= 8029 || (c < 8118 ? (c < 8064 ? (c >= 8031 && c <= 8061) : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 + : (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 >= 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 <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))) + : (c <= 8188 || (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (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 < 8526 - ? (c < 8508 + : (c <= 8477 || c == 8484)) + : (c <= 8486 || (c < 8508 ? (c < 8490 ? c == 8488 : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 + : (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 < 11720 - ? (c < 11680 - ? (c < 11568 + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (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 <= 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 < 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 <= 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 < 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 <= 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 < 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 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 ? (c < 931 ? (c < 748 ? (c < 192 @@ -5549,805 +5754,783 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? c == 902 : c <= 906) : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1749 - ? (c < 1488 + : (c <= 1013 || (c < 1649 + ? (c < 1376 ? (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 - ? (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 >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (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 <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : 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 <= 2136) + : c <= 2154) + : (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 >= 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 < 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 <= 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 < 3346 + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (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 <= 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 < 4304 + : 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 >= 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 < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c >= 5919 && c <= 5937))))) - : (c <= 5969 || (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (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 < 6917 - ? c == 6823 - : c <= 6963) - : (c <= 6988 || (c >= 7043 && c <= 7072))))) - : (c <= 7087 || (c < 7296 - ? (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c >= 7258 && c <= 7293))) - : (c <= 7304 || (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 < 7424 - ? c == 7418 - : c <= 7615) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 + : 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 < 8134 - ? (c < 8126 + : (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 < 8160 + : (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 >= 8178 && c <= 8180))))))))))) - : (c <= 8188 || (c < 12549 - ? (c < 11559 - ? (c < 8488 - ? (c < 8458 - ? (c < 8336 - ? (c < 8319 - ? c == 8305 - : c <= 8319) - : (c <= 8348 || (c < 8455 - ? c == 8450 - : c <= 8455))) - : (c <= 8467 || (c < 8484 + : (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 < 8544 - ? (c < 8517 + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)) - : (c <= 8584 || (c < 11506 + : (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 < 11728 - ? (c < 11688 - ? (c < 11631 + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (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 <= 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 < 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 <= 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 < 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 <= 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 <= 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 < 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))))))))))))))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2730 - ? (c < 1994 - ? (c < 910 + : 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 < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 910 ? (c < 736 ? (c < 186 ? (c < 'a' @@ -6424,1708 +6607,1680 @@ 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 <= 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 < 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_5(int32_t c) { - return (c < 43785 - ? (c < 3804 - ? (c < 2759 - ? (c < 2048 - ? (c < 1155 - ? (c < 736 - ? (c < 183 - ? (c < 'a' + 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 <= '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 < 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 >= 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 >= 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 < 2144 - ? (c >= 2112 && c <= 2139) - : 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 >= 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 >= 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 == 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 <= '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 >= 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 == 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 < 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 < 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 < 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 >= 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 < 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 >= 8144 && c <= 8147) - : c <= 8155))) - : (c <= 8172 || (c < 8255 - ? (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 < 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 == 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 <= 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 < 71960 - ? (c < 67840 - ? (c < 65549 - ? (c < 64848 - ? (c < 64112 - ? (c < 44012 - ? (c < 43824 + : 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 < 44032 - ? (c >= 44016 && c <= 44025) - : 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 >= 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 >= 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 >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (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 <= 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 == 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 >= 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 == 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 <= 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 < 71945 - ? (c < 71935 + : c <= 71494) + : (c <= 71738 || (c < 71935 ? (c >= 71840 && c <= 71913) - : c <= 71942) - : (c <= 71945 || (c < 71957 + : 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 <= 71958) + : (c <= 71989 || (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 < 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 <= 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 <= 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 >= 110592 && c <= 110882) - : c <= 110898))))))) - : (c <= 110930 || (c < 119149 - ? (c < 113792 - ? (c < 110960 - ? (c < 110948 - ? c == 110933 - : c <= 110951) - : (c <= 111355 || (c < 113776 + : 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 < 118528 - ? (c < 113821 + : c <= 113788) + : (c <= 113800 || (c < 113821 ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 118573 || (c < 119141 + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 ? (c >= 118576 && c <= 118598) - : c <= 119145))))) - : (c <= 119154 || (c < 119894 - ? (c < 119210 - ? (c < 119173 + : c <= 119145) + : (c <= 119154 || (c < 119173 ? (c >= 119163 && c <= 119170) - : c <= 119179) - : (c <= 119213 || (c < 119808 + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 ? (c >= 119362 && c <= 119364) - : c <= 119892))) - : (c <= 119964 || (c < 119973 - ? (c < 119970 + : c <= 119892) + : (c <= 119964 || (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : 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 < 124912 - ? (c < 121403 - ? (c < 120514 - ? (c < 120123 - ? (c < 120077 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (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 >= 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 <= 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 < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (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 <= 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))))))))) @@ -8183,15 +8338,13 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (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) { @@ -8201,34 +8354,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(84); if (lookahead == '!') ADVANCE(140); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(52); if (lookahead == '%') ADVANCE(157); if (lookahead == '&') ADVANCE(166); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(89); if (lookahead == ')') ADVANCE(92); if (lookahead == '*') ADVANCE(153); if (lookahead == '+') ADVANCE(148); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(206); + if (lookahead == '.') ADVANCE(205); if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(213); - if (lookahead == ':') ADVANCE(191); + if (lookahead == '0') ADVANCE(212); + if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == '?') ADVANCE(191); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(186); if (lookahead == '\\') SKIP(79) if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); @@ -8237,7 +8390,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 1: if (lookahead == '\n') SKIP(28) @@ -8268,17 +8421,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) END_STATE(); case 10: - if (lookahead == '\n') SKIP(34) + if (lookahead == '\n') SKIP(32) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) END_STATE(); case 12: - if (lookahead == '\n') SKIP(32) + if (lookahead == '\n') SKIP(34) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: @@ -8289,20 +8442,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 +8461,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 +8483,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 +8492,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,46 +8501,65 @@ 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(236); + if (lookahead == '/') ADVANCE(237); + if (lookahead == '\\') ADVANCE(25); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(240); + if (lookahead != 0) ADVANCE(241); + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(243); + if (lookahead == '\r') ADVANCE(242); + if (lookahead == 'U') ADVANCE(76); + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'x') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); + if (lookahead != 0) ADVANCE(242); + END_STATE(); case 26: if (lookahead == '\n') SKIP(44) - if (lookahead == '/') ADVANCE(231); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '/') ADVANCE(230); + if (lookahead == '\\') ADVANCE(229); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(232); + lookahead == ' ') ADVANCE(231); if (lookahead != 0 && - lookahead != '\'') ADVANCE(229); + lookahead != '\'') ADVANCE(228); END_STATE(); case 27: if (lookahead == '!') ADVANCE(140); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(59); if (lookahead == '%') ADVANCE(157); if (lookahead == '&') ADVANCE(166); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == ')') ADVANCE(92); if (lookahead == '*') ADVANCE(153); if (lookahead == '+') ADVANCE(148); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(207); + if (lookahead == '.') ADVANCE(206); if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(213); + if (lookahead == '0') ADVANCE(212); if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == '?') ADVANCE(191); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(185); if (lookahead == '\\') SKIP(6) if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); @@ -8415,14 +8568,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 28: if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(52); if (lookahead == '&') ADVANCE(164); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == '*') ADVANCE(152); if (lookahead == '+') ADVANCE(149); @@ -8430,77 +8583,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(144); if (lookahead == '.') ADVANCE(64); if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(213); + if (lookahead == '0') ADVANCE(212); if (lookahead == ':') ADVANCE(45); if (lookahead == ';') ADVANCE(179); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(50); if (lookahead == '\\') SKIP(2) if (lookahead == ']') ADVANCE(51); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '~') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 29: if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(54); if (lookahead == '&') ADVANCE(164); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == '*') ADVANCE(152); if (lookahead == '+') ADVANCE(149); if (lookahead == '-') ADVANCE(144); if (lookahead == '.') ADVANCE(64); if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(213); + if (lookahead == '0') ADVANCE(212); if (lookahead == ';') ADVANCE(179); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(50); if (lookahead == '\\') SKIP(4) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '~') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 30: if (lookahead == '!') ADVANCE(139); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == ')') ADVANCE(92); if (lookahead == '+') ADVANCE(151); if (lookahead == '-') ADVANCE(146); if (lookahead == '.') ADVANCE(64); if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(213); - if (lookahead == 'L') ADVANCE(257); - if (lookahead == 'U') ADVANCE(258); - if (lookahead == '\\') SKIP(16) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(259); + if (lookahead == '0') ADVANCE(212); + if (lookahead == 'L') ADVANCE(256); + if (lookahead == 'U') ADVANCE(257); + if (lookahead == '\\') SKIP(19) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(258); if (lookahead == '~') ADVANCE(141); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 31: if (lookahead == '!') ADVANCE(46); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '%') ADVANCE(157); if (lookahead == '&') ADVANCE(166); if (lookahead == '(') ADVANCE(138); @@ -8509,22 +8662,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(150); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(145); - if (lookahead == '.') ADVANCE(205); + if (lookahead == '.') ADVANCE(204); if (lookahead == '/') ADVANCE(155); if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); - if (lookahead == 'L') ADVANCE(250); - if (lookahead == 'U') ADVANCE(252); + if (lookahead == '?') ADVANCE(191); + if (lookahead == 'L') ADVANCE(249); + if (lookahead == 'U') ADVANCE(251); if (lookahead == '[') ADVANCE(186); if (lookahead == '\\') SKIP(14) if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(254); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(253); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); if (lookahead == '\t' || @@ -8543,19 +8696,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(150); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(145); - if (lookahead == '.') ADVANCE(205); + if (lookahead == '.') ADVANCE(204); if (lookahead == '/') ADVANCE(155); if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '?') ADVANCE(191); if (lookahead == '[') ADVANCE(186); - if (lookahead == '\\') SKIP(12) - if (lookahead == ']') ADVANCE(51); + if (lookahead == '\\') SKIP(10) + if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(261); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(260); + if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); if (lookahead == '\t' || @@ -8584,7 +8738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(186); if (lookahead == '\\') SKIP(8) if (lookahead == '^') ADVANCE(162); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(261); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(260); if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(161); if (lookahead == '}') ADVANCE(184); @@ -8604,20 +8758,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(150); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(145); - if (lookahead == '.') ADVANCE(205); + if (lookahead == '.') ADVANCE(204); if (lookahead == '/') ADVANCE(155); if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '?') ADVANCE(191); if (lookahead == '[') ADVANCE(186); - if (lookahead == '\\') SKIP(10) - if (lookahead == ']') ADVANCE(187); + if (lookahead == '\\') SKIP(12) + if (lookahead == ']') ADVANCE(51); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(261); - if (lookahead == '{') ADVANCE(183); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(260); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); if (lookahead == '\t' || @@ -8626,23 +8779,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(34) END_STATE(); case 35: - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '/') ADVANCE(37); if (lookahead == '<') ADVANCE(48); - if (lookahead == 'L') ADVANCE(250); - if (lookahead == 'U') ADVANCE(252); + if (lookahead == 'L') ADVANCE(249); + if (lookahead == 'U') ADVANCE(251); if (lookahead == '\\') SKIP(21) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(254); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(253); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) END_STATE(); case 36: - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '/') ADVANCE(37); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8650,11 +8803,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 37: if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '/') ADVANCE(262); END_STATE(); case 38: if (lookahead == '*') ADVANCE(38); - if (lookahead == '/') ADVANCE(262); + if (lookahead == '/') ADVANCE(261); if (lookahead != 0) ADVANCE(39); END_STATE(); case 39: @@ -8663,15 +8816,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(211); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (lookahead == '0') ADVANCE(210); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(211); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); case 41: if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(214); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(213); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 42: if (lookahead == '.') ADVANCE(43); @@ -8681,7 +8834,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' || @@ -8697,13 +8850,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(167); END_STATE(); case 48: - if (lookahead == '>') ADVANCE(247); + if (lookahead == '>') ADVANCE(246); if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && lookahead != '\n') ADVANCE(48); END_STATE(); case 49: - if (lookahead == '>') ADVANCE(248); + if (lookahead == '>') ADVANCE(247); if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && lookahead != '\n') ADVANCE(48); @@ -8784,35 +8937,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(58); END_STATE(); case 63: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 64: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 65: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(211); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); case 66: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(216); END_STATE(); case 67: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); case 68: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); END_STATE(); case 69: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); END_STATE(); case 70: if (('0' <= lookahead && lookahead <= '9') || @@ -8852,9 +9005,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 77: if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(263); - if (lookahead == '\r') ADVANCE(267); - if (lookahead == '\\') ADVANCE(265); + lookahead != '\\') ADVANCE(262); + if (lookahead == '\r') ADVANCE(266); + if (lookahead == '\\') ADVANCE(264); END_STATE(); case 78: if (eof) ADVANCE(84); @@ -8877,34 +9030,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 82: if (eof) ADVANCE(84); if (lookahead == '!') ADVANCE(140); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(52); if (lookahead == '%') ADVANCE(157); if (lookahead == '&') ADVANCE(166); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == ')') ADVANCE(92); if (lookahead == '*') ADVANCE(153); if (lookahead == '+') ADVANCE(148); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(143); - if (lookahead == '.') ADVANCE(206); + if (lookahead == '.') ADVANCE(205); if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(213); - if (lookahead == ':') ADVANCE(191); + if (lookahead == '0') ADVANCE(212); + if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '<') ADVANCE(173); if (lookahead == '=') ADVANCE(189); if (lookahead == '>') ADVANCE(169); - if (lookahead == '?') ADVANCE(192); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == '?') ADVANCE(191); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(186); if (lookahead == '\\') SKIP(79) if (lookahead == ']') ADVANCE(187); if (lookahead == '^') ADVANCE(163); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '|') ADVANCE(160); if (lookahead == '}') ADVANCE(184); @@ -8913,34 +9066,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 83: if (eof) ADVANCE(84); if (lookahead == '!') ADVANCE(139); - if (lookahead == '"') ADVANCE(237); + if (lookahead == '"') ADVANCE(236); if (lookahead == '#') ADVANCE(56); if (lookahead == '&') ADVANCE(164); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(227); if (lookahead == '(') ADVANCE(138); if (lookahead == ')') ADVANCE(92); if (lookahead == '*') ADVANCE(152); if (lookahead == '+') ADVANCE(149); if (lookahead == ',') ADVANCE(91); if (lookahead == '-') ADVANCE(144); - if (lookahead == '.') ADVANCE(207); + if (lookahead == '.') ADVANCE(206); if (lookahead == '/') ADVANCE(37); - if (lookahead == '0') ADVANCE(213); + if (lookahead == '0') ADVANCE(212); if (lookahead == ':') ADVANCE(190); if (lookahead == ';') ADVANCE(179); if (lookahead == '=') ADVANCE(188); - if (lookahead == 'L') ADVANCE(249); - if (lookahead == 'U') ADVANCE(251); + if (lookahead == 'L') ADVANCE(248); + if (lookahead == 'U') ADVANCE(250); if (lookahead == '[') ADVANCE(186); if (lookahead == '\\') SKIP(81) if (lookahead == ']') ADVANCE(187); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(261); - if (lookahead == 'u') ADVANCE(253); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(260); + if (lookahead == 'u') ADVANCE(252); if (lookahead == '{') ADVANCE(183); if (lookahead == '}') ADVANCE(184); if (lookahead == '~') ADVANCE(141); @@ -8948,7 +9101,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(83) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 84: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -9252,7 +9405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(39); if (lookahead == '*') ADVANCE(126); - if (lookahead == '/') ADVANCE(262); + if (lookahead == '/') ADVANCE(261); if (lookahead == '\\') ADVANCE(133); if (lookahead != 0) ADVANCE(127); END_STATE(); @@ -9289,7 +9442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 131: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') ADVANCE(127); - if (lookahead == '/') ADVANCE(264); + if (lookahead == '/') ADVANCE(263); if (lookahead == '\\') ADVANCE(134); if (lookahead != 0 && lookahead != '\n') ADVANCE(132); @@ -9322,9 +9475,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(264); - if (lookahead == '\r') ADVANCE(268); - if (lookahead == '\\') ADVANCE(266); + lookahead != '\\') ADVANCE(263); + if (lookahead == '\r') ADVANCE(267); + if (lookahead == '\\') ADVANCE(265); END_STATE(); case 136: ACCEPT_TOKEN(sym_preproc_arg); @@ -9358,85 +9511,85 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 143: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(203); + if (lookahead == '-') ADVANCE(202); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(208); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(207); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(203); + if (lookahead == '-') ADVANCE(202); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(203); - if (lookahead == '=') ADVANCE(197); - if (lookahead == '>') ADVANCE(208); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '=') ADVANCE(196); + if (lookahead == '>') ADVANCE(207); END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(204); + if (lookahead == '+') ADVANCE(203); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (lookahead == '=') ADVANCE(196); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (lookahead == '=') ADVANCE(195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 149: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(204); + if (lookahead == '+') ADVANCE(203); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(204); - if (lookahead == '=') ADVANCE(196); + if (lookahead == '+') ADVANCE(203); + if (lookahead == '=') ADVANCE(195); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(64); - if (lookahead == '0') ADVANCE(213); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(215); + if (lookahead == '0') ADVANCE(212); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 153: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(193); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 154: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '/') ADVANCE(262); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(263); - if (lookahead == '=') ADVANCE(194); + if (lookahead == '/') ADVANCE(262); + if (lookahead == '=') ADVANCE(193); END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(195); + if (lookahead == '=') ADVANCE(194); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); @@ -9446,7 +9599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '=') ADVANCE(201); if (lookahead == '|') ADVANCE(158); END_STATE(); case 161: @@ -9458,7 +9611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 163: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(201); + if (lookahead == '=') ADVANCE(200); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_AMP); @@ -9470,7 +9623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 166: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(159); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '=') ADVANCE(199); END_STATE(); case 167: ACCEPT_TOKEN(anon_sym_EQ_EQ); @@ -9509,14 +9662,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(198); + if (lookahead == '=') ADVANCE(197); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(199); + if (lookahead == '=') ADVANCE(198); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_SEMI); @@ -9557,64 +9710,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 205: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); - END_STATE(); - case 208: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 209: + case 208: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(64); if (lookahead == 'F' || @@ -9622,453 +9771,461 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + lookahead == 'p') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); - case 210: + case 209: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(68); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(210); + lookahead == 'f') ADVANCE(209); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(209); END_STATE(); - case 211: + case 210: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(65); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(220); + lookahead == 'f') ADVANCE(219); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); - if (lookahead == 'b') ADVANCE(219); + lookahead == 'u') ADVANCE(222); + if (lookahead == 'b') ADVANCE(218); if (lookahead == 'x') ADVANCE(67); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(217); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(211); END_STATE(); - case 212: + case 211: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(65); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(220); + lookahead == 'f') ADVANCE(219); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(217); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(211); END_STATE(); - case 213: + case 212: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'b') ADVANCE(41); if (lookahead == 'x') ADVANCE(40); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + lookahead == 'p') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); - case 214: + case 213: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'b') ADVANCE(63); if (lookahead == 'x') ADVANCE(67); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + lookahead == 'p') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); - case 215: + case 214: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(63); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(215); + lookahead == 'p') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); - case 216: + case 215: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(66); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); + lookahead == 'f') ADVANCE(216); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == '+' || lookahead == '-') ADVANCE(68); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(215); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(216); END_STATE(); - case 217: + case 216: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(66); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); + lookahead == 'f') ADVANCE(216); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(215); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(216); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(220); + lookahead == 'f') ADVANCE(219); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == '+' || lookahead == '-') ADVANCE(68); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(217); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(219); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(220); + lookahead == 'f') ADVANCE(219); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(217); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(211); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(67); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(220); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(220); + lookahead == 'f') ADVANCE(219); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(217); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(219); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(217); + lookahead == 'f') ADVANCE(216); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(216); + lookahead == 'e') ADVANCE(215); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(222); + lookahead == 'p') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(216); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(210); + lookahead == 'f') ADVANCE(209); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); if (lookahead == '+' || lookahead == '-') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(210); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(209); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(223); + lookahead == 'u') ADVANCE(222); END_STATE(); - case 224: + case 223: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 225: + case 224: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 226: + case 225: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(244); - if (lookahead == '\r') ADVANCE(243); + if (lookahead == '\n') ADVANCE(243); + if (lookahead == '\r') ADVANCE(242); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); + if (lookahead != 0) ADVANCE(242); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '*') ADVANCE(39); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '/') ADVANCE(262); END_STATE(); - case 232: + case 231: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '\\') ADVANCE(25); END_STATE(); - case 233: + case 232: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 234: + case 233: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 235: + case 234: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 236: + case 235: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 237: + case 236: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 238: + case 237: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(240); - if (lookahead == '/') ADVANCE(242); + if (lookahead == '*') ADVANCE(239); + if (lookahead == '/') ADVANCE(241); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(242); + lookahead != '\\') ADVANCE(241); END_STATE(); - case 239: + case 238: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(239); - if (lookahead == '/') ADVANCE(242); + if (lookahead == '*') ADVANCE(238); + if (lookahead == '/') ADVANCE(241); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 240: + case 239: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(239); + if (lookahead == '*') ADVANCE(238); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 241: + case 240: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(238); + if (lookahead == '/') ADVANCE(237); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(241); + lookahead == ' ') ADVANCE(240); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(242); + lookahead != '\\') ADVANCE(241); END_STATE(); - case 242: + case 241: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(242); + lookahead != '\\') ADVANCE(241); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 243: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(25); END_STATE(); case 244: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 245: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); END_STATE(); case 246: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); - END_STATE(); - case 247: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 248: + case 247: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(247); + if (lookahead == '>') ADVANCE(246); if (lookahead == '\\') ADVANCE(49); if (lookahead != 0 && lookahead != '\n') ADVANCE(48); END_STATE(); + case 248: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(232); + if (lookahead == '\'') ADVANCE(223); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); + END_STATE(); case 249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(233); - if (lookahead == '\'') ADVANCE(224); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(232); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(233); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '\'') ADVANCE(225); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(235); - if (lookahead == '\'') ADVANCE(226); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(234); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(235); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(233); + if (lookahead == '\'') ADVANCE(224); + if (lookahead == '8') ADVANCE(254); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(234); - if (lookahead == '\'') ADVANCE(225); + if (lookahead == '"') ADVANCE(233); if (lookahead == '8') ADVANCE(255); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(234); - if (lookahead == '8') ADVANCE(256); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(235); + if (lookahead == '\'') ADVANCE(226); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(236); - if (lookahead == '\'') ADVANCE(227); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '"') ADVANCE(235); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(236); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '\'') ADVANCE(223); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(224); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '\'') ADVANCE(225); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(226); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '\'') ADVANCE(224); + if (lookahead == '8') ADVANCE(259); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(225); - if (lookahead == '8') ADVANCE(260); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (lookahead == '\'') ADVANCE(226); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 260: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(227); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(260); END_STATE(); case 261: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(261); + ACCEPT_TOKEN(sym_comment); END_STATE(); case 262: ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(77); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(262); END_STATE(); case 263: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\\') ADVANCE(135); if (lookahead != 0 && lookahead != '\n') ADVANCE(263); END_STATE(); case 264: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(135); if (lookahead != 0 && - lookahead != '\n') ADVANCE(264); + lookahead != '\r' && + lookahead != '\\') ADVANCE(262); + if (lookahead == '\r') ADVANCE(266); + if (lookahead == '\\') ADVANCE(264); END_STATE(); case 265: ACCEPT_TOKEN(sym_comment); @@ -10081,21 +10238,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 266: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(264); - if (lookahead == '\r') ADVANCE(268); - if (lookahead == '\\') ADVANCE(266); + lookahead != '\\') ADVANCE(262); + if (lookahead == '\\') ADVANCE(77); END_STATE(); case 267: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\\') ADVANCE(263); - if (lookahead == '\\') ADVANCE(77); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(264); if (lookahead == '\\') ADVANCE(135); END_STATE(); default: @@ -10154,1103 +10303,1123 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(29); END_STATE(); case 6: - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 's') 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 == 'e') 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 == 'h') ADVANCE(50); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 's') ADVANCE(52); + if (lookahead == 't') ADVANCE(53); + if (lookahead == 'w') ADVANCE(54); END_STATE(); case 17: - if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'y') ADVANCE(55); + if (lookahead == 'r') ADVANCE(55); + if (lookahead == 'y') ADVANCE(56); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(56); - if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'n') ADVANCE(58); END_STATE(); case 19: - if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'o') ADVANCE(59); END_STATE(); case 20: - if (lookahead == 'h') ADVANCE(59); + if (lookahead == 'h') ADVANCE(60); END_STATE(); case 21: - if (lookahead == 'L') ADVANCE(60); + if (lookahead == 'L') 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 == 'U') ADVANCE(63); END_STATE(); case 24: if (lookahead == '\n') SKIP(0) END_STATE(); case 25: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); END_STATE(); case 26: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 'e') ADVANCE(65); END_STATE(); case 27: - if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'o') 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 == 'a') ADVANCE(67); + if (lookahead == 'b') ADVANCE(68); + if (lookahead == 'c') ADVANCE(69); + if (lookahead == 'd') ADVANCE(70); + if (lookahead == 'f') ADVANCE(71); + if (lookahead == 'r') ADVANCE(72); + if (lookahead == 's') ADVANCE(73); + if (lookahead == 't') ADVANCE(74); + if (lookahead == 'u') ADVANCE(75); + if (lookahead == 'v') ADVANCE(76); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 'm') 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 == 'g') ADVANCE(97); + if (lookahead == 's') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 50: - if (lookahead == 'g') ADVANCE(99); - if (lookahead == 'z') ADVANCE(100); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 51: - if (lookahead == 'i') ADVANCE(101); + if (lookahead == 'g') ADVANCE(101); + if (lookahead == 'z') ADVANCE(102); END_STATE(); case 52: - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'r') ADVANCE(103); + if (lookahead == 'i') ADVANCE(103); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(104); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'r') ADVANCE(105); END_STATE(); case 54: - if (lookahead == 'u') ADVANCE(105); + if (lookahead == 'i') ADVANCE(106); END_STATE(); case 55: - if (lookahead == 'p') ADVANCE(106); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 56: - if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'p') ADVANCE(108); END_STATE(); case 57: - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 's') ADVANCE(109); + if (lookahead == 'n') ADVANCE(109); END_STATE(); case 58: if (lookahead == 'i') ADVANCE(110); - if (lookahead == 'l') ADVANCE(111); + if (lookahead == 's') ADVANCE(111); END_STATE(); case 59: if (lookahead == 'i') ADVANCE(112); + if (lookahead == 'l') ADVANCE(113); END_STATE(); case 60: - if (lookahead == 'S') ADVANCE(113); + if (lookahead == 'i') ADVANCE(114); END_STATE(); case 61: - if (lookahead == 'L') ADVANCE(114); + if (lookahead == 'S') ADVANCE(115); END_STATE(); case 62: - if (lookahead == 'E') ADVANCE(115); + if (lookahead == 'L') ADVANCE(116); END_STATE(); case 63: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'E') ADVANCE(117); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'o') ADVANCE(118); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(118); + if (lookahead == 'n') ADVANCE(119); END_STATE(); case 66: - if (lookahead == 't') ADVANCE(119); + if (lookahead == 'r') ADVANCE(120); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == 's') ADVANCE(121); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(121); - if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'd') ADVANCE(124); + if (lookahead == 'l') ADVANCE(125); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'e') ADVANCE(126); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 72: - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(127); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 73: - if (lookahead == 'h') ADVANCE(128); + if (lookahead == 'p') ADVANCE(129); + if (lookahead == 't') ADVANCE(130); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(129); - if (lookahead == 'p') ADVANCE(130); + if (lookahead == 'h') ADVANCE(131); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(133); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 78: - if (lookahead == 'l') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_asm); 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 == 'i') ADVANCE(159); END_STATE(); case 98: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 99: - if (lookahead == 'n') ADVANCE(160); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(161); + if (lookahead == 'r') ADVANCE(162); END_STATE(); case 101: - if (lookahead == 'z') ADVANCE(162); + if (lookahead == 'n') ADVANCE(163); END_STATE(); case 102: - if (lookahead == 't') ADVANCE(163); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 103: - if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'z') ADVANCE(165); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(165); + if (lookahead == 't') ADVANCE(166); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'u') ADVANCE(167); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 'e') ADVANCE(117); END_STATE(); case 108: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 109: - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 110: - if (lookahead == 'd') ADVANCE(134); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 111: - if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'd') ADVANCE(137); END_STATE(); case 113: - if (lookahead == 'E') ADVANCE(172); + if (lookahead == 'a') ADVANCE(173); END_STATE(); case 114: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'l') ADVANCE(174); END_STATE(); case 115: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'E') ADVANCE(175); END_STATE(); case 116: - if (lookahead == 'm') ADVANCE(173); + ACCEPT_TOKEN(sym_null); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(174); + ACCEPT_TOKEN(sym_true); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'm') ADVANCE(176); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(176); + if (lookahead == 'e') 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 == 'm') 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(175); 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 == 's') ADVANCE(212); END_STATE(); case 160: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'r') 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 == 't') ADVANCE(215); END_STATE(); case 163: - if (lookahead == 'i') ADVANCE(216); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 164: - if (lookahead == 'c') ADVANCE(217); + if (lookahead == '_') ADVANCE(217); + if (lookahead == 'o') ADVANCE(218); END_STATE(); case 165: - if (lookahead == 'c') ADVANCE(218); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 166: - if (lookahead == 'd') ADVANCE(219); + if (lookahead == 'i') 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 == 'c') 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 == 'd') ADVANCE(223); END_STATE(); case 170: - if (lookahead == 't') ADVANCE(227); + if (lookahead == '1') ADVANCE(224); + if (lookahead == '3') ADVANCE(225); + if (lookahead == '6') ADVANCE(226); + if (lookahead == '8') ADVANCE(227); + if (lookahead == 'p') ADVANCE(228); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'n') ADVANCE(229); END_STATE(); case 172: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'g') ADVANCE(230); END_STATE(); case 173: - if (lookahead == 'i') ADVANCE(229); + if (lookahead == 't') ADVANCE(231); END_STATE(); case 174: - if (lookahead == 'r') ADVANCE(230); + if (lookahead == 'e') ADVANCE(232); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(231); + ACCEPT_TOKEN(sym_false); END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(232); + if (lookahead == 'i') ADVANCE(233); END_STATE(); case 177: - if (lookahead == 'e') ADVANCE(233); + if (lookahead == 'r') ADVANCE(234); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(234); + if (lookahead == 't') ADVANCE(235); END_STATE(); case 179: - if (lookahead == 'c') ADVANCE(235); + if (lookahead == '_') 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 == 'i') ADVANCE(266); END_STATE(); case 214: - if (lookahead == 'f') ADVANCE(264); + if (lookahead == 'n') ADVANCE(267); END_STATE(); case 215: - if (lookahead == '_') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 216: - if (lookahead == 'c') ADVANCE(266); + if (lookahead == 'd') ADVANCE(268); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(267); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 218: - if (lookahead == 'h') ADVANCE(268); + if (lookahead == 'f') ADVANCE(269); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(269); + if (lookahead == '_') ADVANCE(270); END_STATE(); case 220: - if (lookahead == '6') ADVANCE(270); + if (lookahead == 'c') ADVANCE(271); END_STATE(); case 221: - if (lookahead == '2') ADVANCE(271); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 222: - if (lookahead == '4') ADVANCE(272); + if (lookahead == 'h') ADVANCE(273); END_STATE(); case 223: - if (lookahead == '_') ADVANCE(273); + if (lookahead == 'e') ADVANCE(274); END_STATE(); case 224: - if (lookahead == 't') ADVANCE(274); + if (lookahead == '6') ADVANCE(275); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == '2') ADVANCE(276); END_STATE(); case 226: - if (lookahead == 'n') ADVANCE(275); + if (lookahead == '4') ADVANCE(277); END_STATE(); case 227: - if (lookahead == 'i') ADVANCE(276); + if (lookahead == '_') ADVANCE(278); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(279); END_STATE(); case 229: - if (lookahead == 'c') ADVANCE(277); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 230: - if (lookahead == 'i') ADVANCE(278); + if (lookahead == 'n') ADVANCE(280); END_STATE(); case 231: - if (lookahead == 'u') ADVANCE(279); + if (lookahead == 'i') ADVANCE(281); END_STATE(); case 232: - if (lookahead == 'i') ADVANCE(280); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 233: - if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'c') ADVANCE(282); END_STATE(); case 234: - if (lookahead == 'l') ADVANCE(282); + if (lookahead == 'i') ADVANCE(283); END_STATE(); case 235: - if (lookahead == 'a') ADVANCE(283); + if (lookahead == 'u') ADVANCE(284); END_STATE(); case 236: - if (lookahead == 's') ADVANCE(284); + if (lookahead == '_') 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 == 'e') ADVANCE(306); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'c') ADVANCE(307); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 269: - if (lookahead == 'f') ADVANCE(302); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 270: - if (lookahead == '_') ADVANCE(303); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 271: - if (lookahead == '_') ADVANCE(304); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 272: - if (lookahead == '_') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 273: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 274: - if (lookahead == 'r') ADVANCE(306); + if (lookahead == 'f') ADVANCE(308); END_STATE(); case 275: - if (lookahead == 'e') ADVANCE(307); + if (lookahead == '_') 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 == 't') ADVANCE(137); END_STATE(); case 279: - if (lookahead == 'r') ADVANCE(310); + if (lookahead == 'r') ADVANCE(312); END_STATE(); case 280: - if (lookahead == 'b') ADVANCE(311); + if (lookahead == 'e') ADVANCE(313); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'l') ADVANCE(314); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym___cdecl); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 283: - if (lookahead == 'l') ADVANCE(312); + if (lookahead == 'c') ADVANCE(315); END_STATE(); case 284: - if (lookahead == 'p') ADVANCE(313); + if (lookahead == 'r') ADVANCE(316); END_STATE(); case 285: - if (lookahead == 'a') ADVANCE(314); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 286: - if (lookahead == 'i') ADVANCE(315); + if (lookahead == 'b') ADVANCE(317); 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(318); END_STATE(); case 290: - if (lookahead == 'r') ADVANCE(319); + if (lookahead == 'p') ADVANCE(319); END_STATE(); case 291: - if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'a') ADVANCE(320); END_STATE(); case 292: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'i') ADVANCE(321); END_STATE(); case 293: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'l') ADVANCE(322); END_STATE(); case 294: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'a') ADVANCE(323); END_STATE(); case 295: - if (lookahead == '_') ADVANCE(321); + if (lookahead == 'g') ADVANCE(324); END_STATE(); case 296: - if (lookahead == 'e') ADVANCE(322); + if (lookahead == 'r') ADVANCE(325); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'n') ADVANCE(326); 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(327); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'e') ADVANCE(328); 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 == 'r') ADVANCE(329); END_STATE(); case 307: - if (lookahead == 'd') ADVANCE(326); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(327); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 't') ADVANCE(137); 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 == '_') ADVANCE(331); END_STATE(); case 313: - if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'd') ADVANCE(332); END_STATE(); case 314: - if (lookahead == 'l') ADVANCE(332); + if (lookahead == 'e') ADVANCE(333); END_STATE(); case 315: - if (lookahead == 'c') ADVANCE(333); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 316: - if (lookahead == 'l') ADVANCE(334); + if (lookahead == 'n') ADVANCE(334); END_STATE(); case 317: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'u') ADVANCE(335); END_STATE(); case 318: - if (lookahead == 'n') ADVANCE(336); + if (lookahead == 'l') ADVANCE(336); END_STATE(); case 319: - if (lookahead == 'c') ADVANCE(337); + if (lookahead == 'e') ADVANCE(337); END_STATE(); case 320: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'l') ADVANCE(338); END_STATE(); case 321: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'c') ADVANCE(339); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(340); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'l') ADVANCE(341); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'n') ADVANCE(342); END_STATE(); case 325: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'c') ADVANCE(343); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'e') ADVANCE(344); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym__Noreturn); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 329: - if (lookahead == 't') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 331: - if (lookahead == 'c') ADVANCE(340); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 332: - if (lookahead == 'l') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 333: - if (lookahead == 't') ADVANCE(342); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 335: - if (lookahead == 'l') ADVANCE(343); + if (lookahead == 't') ADVANCE(345); END_STATE(); case 336: - if (lookahead == 'e') ADVANCE(344); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 337: - if (lookahead == 'a') ADVANCE(345); + if (lookahead == 'c') ADVANCE(346); END_STATE(); case 338: - if (lookahead == 'd') ADVANCE(346); + if (lookahead == 'l') ADVANCE(347); END_STATE(); case 339: - if (lookahead == 'e') ADVANCE(347); + if (lookahead == 't') ADVANCE(348); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym___declspec); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 'l') ADVANCE(349); END_STATE(); case 342: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(348); + if (lookahead == 'e') ADVANCE(350); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'a') ADVANCE(351); END_STATE(); case 344: - if (lookahead == 'd') ADVANCE(349); + if (lookahead == 'd') ADVANCE(352); END_STATE(); case 345: - if (lookahead == 'l') ADVANCE(350); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 347: - if (lookahead == '_') ADVANCE(351); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 348: - if (lookahead == '_') ADVANCE(352); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(354); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym___unaligned); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 350: - if (lookahead == 'l') ADVANCE(353); + if (lookahead == 'd') ADVANCE(355); END_STATE(); case 351: - if (lookahead == '_') ADVANCE(354); + if (lookahead == 'l') ADVANCE(356); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym___restrict__); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == '_') ADVANCE(357); END_STATE(); case 354: + if (lookahead == '_') ADVANCE(358); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 356: + if (lookahead == 'l') ADVANCE(359); + END_STATE(); + case 357: + if (lookahead == '_') ADVANCE(360); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 360: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); default: @@ -11283,12 +11452,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 83}, [22] = {.lex_state = 83}, [23] = {.lex_state = 29}, - [24] = {.lex_state = 29}, + [24] = {.lex_state = 83}, [25] = {.lex_state = 83}, [26] = {.lex_state = 83}, [27] = {.lex_state = 83}, - [28] = {.lex_state = 83}, - [29] = {.lex_state = 83}, + [28] = {.lex_state = 29}, + [29] = {.lex_state = 29}, [30] = {.lex_state = 83}, [31] = {.lex_state = 83}, [32] = {.lex_state = 83}, @@ -11300,24 +11469,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 83}, [39] = {.lex_state = 83}, [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}, + [48] = {.lex_state = 83}, + [49] = {.lex_state = 83}, [50] = {.lex_state = 83}, - [51] = {.lex_state = 83}, - [52] = {.lex_state = 29}, + [51] = {.lex_state = 29}, + [52] = {.lex_state = 83}, [53] = {.lex_state = 29}, [54] = {.lex_state = 83}, - [55] = {.lex_state = 83}, - [56] = {.lex_state = 83}, - [57] = {.lex_state = 29}, - [58] = {.lex_state = 83}, + [55] = {.lex_state = 29}, + [56] = {.lex_state = 29}, + [57] = {.lex_state = 83}, + [58] = {.lex_state = 29}, [59] = {.lex_state = 83}, [60] = {.lex_state = 83}, [61] = {.lex_state = 83}, @@ -11384,32 +11553,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 28}, [123] = {.lex_state = 28}, [124] = {.lex_state = 28}, - [125] = {.lex_state = 83}, + [125] = {.lex_state = 27}, [126] = {.lex_state = 83}, [127] = {.lex_state = 83}, [128] = {.lex_state = 83}, [129] = {.lex_state = 83}, - [130] = {.lex_state = 29}, - [131] = {.lex_state = 29}, - [132] = {.lex_state = 29}, + [130] = {.lex_state = 83}, + [131] = {.lex_state = 83}, + [132] = {.lex_state = 83}, [133] = {.lex_state = 83}, [134] = {.lex_state = 83}, [135] = {.lex_state = 83}, [136] = {.lex_state = 83}, [137] = {.lex_state = 29}, [138] = {.lex_state = 83}, - [139] = {.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}, + [147] = {.lex_state = 83}, [148] = {.lex_state = 83}, [149] = {.lex_state = 83}, - [150] = {.lex_state = 29}, + [150] = {.lex_state = 83}, [151] = {.lex_state = 83}, [152] = {.lex_state = 83}, [153] = {.lex_state = 83}, @@ -11421,44 +11590,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 83}, [160] = {.lex_state = 83}, [161] = {.lex_state = 83}, - [162] = {.lex_state = 83}, + [162] = {.lex_state = 29}, [163] = {.lex_state = 83}, [164] = {.lex_state = 83}, [165] = {.lex_state = 29}, [166] = {.lex_state = 29}, - [167] = {.lex_state = 29}, - [168] = {.lex_state = 83}, - [169] = {.lex_state = 83}, + [167] = {.lex_state = 83}, + [168] = {.lex_state = 29}, + [169] = {.lex_state = 29}, [170] = {.lex_state = 29}, - [171] = {.lex_state = 29}, + [171] = {.lex_state = 83}, [172] = {.lex_state = 83}, [173] = {.lex_state = 29}, - [174] = {.lex_state = 83}, + [174] = {.lex_state = 29}, [175] = {.lex_state = 29}, [176] = {.lex_state = 29}, [177] = {.lex_state = 83}, - [178] = {.lex_state = 29}, - [179] = {.lex_state = 29}, - [180] = {.lex_state = 27}, - [181] = {.lex_state = 29}, + [178] = {.lex_state = 83}, + [179] = {.lex_state = 83}, + [180] = {.lex_state = 83}, + [181] = {.lex_state = 83}, [182] = {.lex_state = 83}, - [183] = {.lex_state = 29}, - [184] = {.lex_state = 29}, + [183] = {.lex_state = 83}, + [184] = {.lex_state = 83}, [185] = {.lex_state = 29}, - [186] = {.lex_state = 83}, + [186] = {.lex_state = 29}, [187] = {.lex_state = 83}, [188] = {.lex_state = 83}, [189] = {.lex_state = 83}, - [190] = {.lex_state = 83}, - [191] = {.lex_state = 29}, + [190] = {.lex_state = 29}, + [191] = {.lex_state = 83}, [192] = {.lex_state = 83}, - [193] = {.lex_state = 29}, + [193] = {.lex_state = 83}, [194] = {.lex_state = 83}, - [195] = {.lex_state = 29}, - [196] = {.lex_state = 29}, + [195] = {.lex_state = 83}, + [196] = {.lex_state = 83}, [197] = {.lex_state = 83}, - [198] = {.lex_state = 83}, - [199] = {.lex_state = 83}, + [198] = {.lex_state = 29}, + [199] = {.lex_state = 29}, [200] = {.lex_state = 29}, [201] = {.lex_state = 83}, [202] = {.lex_state = 83}, @@ -11467,53 +11636,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 83}, [206] = {.lex_state = 83}, [207] = {.lex_state = 83}, - [208] = {.lex_state = 83}, + [208] = {.lex_state = 29}, [209] = {.lex_state = 29}, [210] = {.lex_state = 83}, [211] = {.lex_state = 29}, [212] = {.lex_state = 83}, - [213] = {.lex_state = 83}, + [213] = {.lex_state = 29}, [214] = {.lex_state = 83}, - [215] = {.lex_state = 29}, - [216] = {.lex_state = 29}, + [215] = {.lex_state = 83}, + [216] = {.lex_state = 83}, [217] = {.lex_state = 83}, [218] = {.lex_state = 29}, - [219] = {.lex_state = 29}, + [219] = {.lex_state = 83}, [220] = {.lex_state = 83}, - [221] = {.lex_state = 29}, + [221] = {.lex_state = 83}, [222] = {.lex_state = 83}, - [223] = {.lex_state = 29}, + [223] = {.lex_state = 83}, [224] = {.lex_state = 29}, - [225] = {.lex_state = 83}, + [225] = {.lex_state = 29}, [226] = {.lex_state = 83}, - [227] = {.lex_state = 83}, + [227] = {.lex_state = 29}, [228] = {.lex_state = 83}, [229] = {.lex_state = 83}, [230] = {.lex_state = 83}, - [231] = {.lex_state = 83}, + [231] = {.lex_state = 29}, [232] = {.lex_state = 83}, [233] = {.lex_state = 83}, [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}, + [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}, - [246] = {.lex_state = 83}, - [247] = {.lex_state = 29}, + [245] = {.lex_state = 83}, + [246] = {.lex_state = 29}, + [247] = {.lex_state = 83}, [248] = {.lex_state = 29}, [249] = {.lex_state = 83}, - [250] = {.lex_state = 83}, + [250] = {.lex_state = 29}, [251] = {.lex_state = 83}, - [252] = {.lex_state = 83}, + [252] = {.lex_state = 29}, [253] = {.lex_state = 83}, - [254] = {.lex_state = 29}, + [254] = {.lex_state = 83}, [255] = {.lex_state = 83}, [256] = {.lex_state = 83}, [257] = {.lex_state = 83}, @@ -11522,31 +11691,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 83}, [261] = {.lex_state = 83}, [262] = {.lex_state = 83}, - [263] = {.lex_state = 83}, + [263] = {.lex_state = 29}, [264] = {.lex_state = 83}, [265] = {.lex_state = 83}, [266] = {.lex_state = 83}, [267] = {.lex_state = 83}, [268] = {.lex_state = 83}, [269] = {.lex_state = 83}, - [270] = {.lex_state = 83}, - [271] = {.lex_state = 83}, + [270] = {.lex_state = 29}, + [271] = {.lex_state = 29}, [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}, + [278] = {.lex_state = 29}, + [279] = {.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}, + [287] = {.lex_state = 83}, [288] = {.lex_state = 83}, [289] = {.lex_state = 83}, [290] = {.lex_state = 83}, @@ -11567,9 +11736,9 @@ 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}, @@ -11577,131 +11746,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 83}, [316] = {.lex_state = 83}, [317] = {.lex_state = 83}, - [318] = {.lex_state = 83}, + [318] = {.lex_state = 29}, [319] = {.lex_state = 29}, - [320] = {.lex_state = 83}, + [320] = {.lex_state = 29}, [321] = {.lex_state = 83}, [322] = {.lex_state = 29}, - [323] = {.lex_state = 29}, + [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}, + [329] = {.lex_state = 83}, [330] = {.lex_state = 83}, [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}, [340] = {.lex_state = 83}, [341] = {.lex_state = 83}, - [342] = {.lex_state = 83}, - [343] = {.lex_state = 83}, + [342] = {.lex_state = 29}, + [343] = {.lex_state = 29}, [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}, + [349] = {.lex_state = 29}, [350] = {.lex_state = 83}, - [351] = {.lex_state = 83}, - [352] = {.lex_state = 83}, + [351] = {.lex_state = 29}, + [352] = {.lex_state = 29}, [353] = {.lex_state = 83}, [354] = {.lex_state = 83}, [355] = {.lex_state = 83}, [356] = {.lex_state = 83}, [357] = {.lex_state = 83}, [358] = {.lex_state = 83}, - [359] = {.lex_state = 29}, - [360] = {.lex_state = 29}, + [359] = {.lex_state = 83}, + [360] = {.lex_state = 83}, [361] = {.lex_state = 29}, - [362] = {.lex_state = 83}, + [362] = {.lex_state = 29}, [363] = {.lex_state = 83}, - [364] = {.lex_state = 83}, + [364] = {.lex_state = 29}, [365] = {.lex_state = 83}, [366] = {.lex_state = 29}, - [367] = {.lex_state = 83}, + [367] = {.lex_state = 29}, [368] = {.lex_state = 83}, [369] = {.lex_state = 83}, - [370] = {.lex_state = 83}, - [371] = {.lex_state = 83}, + [370] = {.lex_state = 29}, + [371] = {.lex_state = 29}, [372] = {.lex_state = 83}, [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}, - [380] = {.lex_state = 83}, + [380] = {.lex_state = 27}, [381] = {.lex_state = 83}, [382] = {.lex_state = 83}, - [383] = {.lex_state = 83}, - [384] = {.lex_state = 27}, + [383] = {.lex_state = 27}, + [384] = {.lex_state = 83}, [385] = {.lex_state = 83}, [386] = {.lex_state = 33}, - [387] = {.lex_state = 33}, + [387] = {.lex_state = 83}, [388] = {.lex_state = 33}, - [389] = {.lex_state = 33}, - [390] = {.lex_state = 33}, + [389] = {.lex_state = 83}, + [390] = {.lex_state = 83}, [391] = {.lex_state = 33}, [392] = {.lex_state = 33}, - [393] = {.lex_state = 33}, - [394] = {.lex_state = 33}, + [393] = {.lex_state = 83}, + [394] = {.lex_state = 83}, [395] = {.lex_state = 33}, [396] = {.lex_state = 33}, - [397] = {.lex_state = 33}, - [398] = {.lex_state = 33}, + [397] = {.lex_state = 83}, + [398] = {.lex_state = 83}, [399] = {.lex_state = 33}, - [400] = {.lex_state = 33}, - [401] = {.lex_state = 34}, - [402] = {.lex_state = 34}, - [403] = {.lex_state = 34}, - [404] = {.lex_state = 34}, - [405] = {.lex_state = 34}, - [406] = {.lex_state = 34}, - [407] = {.lex_state = 34}, - [408] = {.lex_state = 34}, - [409] = {.lex_state = 34}, + [400] = {.lex_state = 83}, + [401] = {.lex_state = 33}, + [402] = {.lex_state = 33}, + [403] = {.lex_state = 33}, + [404] = {.lex_state = 33}, + [405] = {.lex_state = 83}, + [406] = {.lex_state = 33}, + [407] = {.lex_state = 83}, + [408] = {.lex_state = 33}, + [409] = {.lex_state = 33}, [410] = {.lex_state = 83}, - [411] = {.lex_state = 33}, + [411] = {.lex_state = 83}, [412] = {.lex_state = 83}, - [413] = {.lex_state = 83}, - [414] = {.lex_state = 83}, + [413] = {.lex_state = 33}, + [414] = {.lex_state = 32}, [415] = {.lex_state = 83}, - [416] = {.lex_state = 83}, - [417] = {.lex_state = 83}, - [418] = {.lex_state = 83}, - [419] = {.lex_state = 83}, - [420] = {.lex_state = 83}, - [421] = {.lex_state = 83}, - [422] = {.lex_state = 83}, - [423] = {.lex_state = 83}, - [424] = {.lex_state = 83}, - [425] = {.lex_state = 34}, - [426] = {.lex_state = 34}, + [416] = {.lex_state = 32}, + [417] = {.lex_state = 32}, + [418] = {.lex_state = 32}, + [419] = {.lex_state = 32}, + [420] = {.lex_state = 32}, + [421] = {.lex_state = 32}, + [422] = {.lex_state = 32}, + [423] = {.lex_state = 32}, + [424] = {.lex_state = 33}, + [425] = {.lex_state = 32}, + [426] = {.lex_state = 32}, [427] = {.lex_state = 34}, - [428] = {.lex_state = 32}, + [428] = {.lex_state = 34}, [429] = {.lex_state = 32}, - [430] = {.lex_state = 32}, + [430] = {.lex_state = 34}, [431] = {.lex_state = 33}, - [432] = {.lex_state = 33}, - [433] = {.lex_state = 33}, + [432] = {.lex_state = 83}, + [433] = {.lex_state = 83}, [434] = {.lex_state = 31}, - [435] = {.lex_state = 31}, - [436] = {.lex_state = 33}, - [437] = {.lex_state = 33}, - [438] = {.lex_state = 31}, - [439] = {.lex_state = 31}, - [440] = {.lex_state = 31}, + [435] = {.lex_state = 33}, + [436] = {.lex_state = 83}, + [437] = {.lex_state = 83}, + [438] = {.lex_state = 83}, + [439] = {.lex_state = 83}, + [440] = {.lex_state = 83}, [441] = {.lex_state = 83}, - [442] = {.lex_state = 83}, + [442] = {.lex_state = 31}, [443] = {.lex_state = 83}, [444] = {.lex_state = 83}, [445] = {.lex_state = 83}, @@ -11709,11 +11878,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [447] = {.lex_state = 83}, [448] = {.lex_state = 83}, [449] = {.lex_state = 83}, - [450] = {.lex_state = 83}, + [450] = {.lex_state = 33}, [451] = {.lex_state = 83}, [452] = {.lex_state = 83}, [453] = {.lex_state = 83}, - [454] = {.lex_state = 83}, + [454] = {.lex_state = 33}, [455] = {.lex_state = 83}, [456] = {.lex_state = 83}, [457] = {.lex_state = 83}, @@ -11726,9 +11895,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [464] = {.lex_state = 83}, [465] = {.lex_state = 83}, [466] = {.lex_state = 83}, - [467] = {.lex_state = 83}, + [467] = {.lex_state = 31}, [468] = {.lex_state = 83}, - [469] = {.lex_state = 83}, + [469] = {.lex_state = 33}, [470] = {.lex_state = 83}, [471] = {.lex_state = 83}, [472] = {.lex_state = 83}, @@ -11787,7 +11956,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}, @@ -11813,7 +11982,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 83}, [552] = {.lex_state = 83}, [553] = {.lex_state = 83}, - [554] = {.lex_state = 83}, + [554] = {.lex_state = 31}, [555] = {.lex_state = 83}, [556] = {.lex_state = 83}, [557] = {.lex_state = 83}, @@ -11825,7 +11994,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 83}, [564] = {.lex_state = 83}, [565] = {.lex_state = 83}, - [566] = {.lex_state = 83}, + [566] = {.lex_state = 31}, [567] = {.lex_state = 83}, [568] = {.lex_state = 83}, [569] = {.lex_state = 83}, @@ -11841,294 +12010,294 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [579] = {.lex_state = 83}, [580] = {.lex_state = 83}, [581] = {.lex_state = 83}, - [582] = {.lex_state = 83}, - [583] = {.lex_state = 34}, - [584] = {.lex_state = 34}, + [582] = {.lex_state = 32}, + [583] = {.lex_state = 32}, + [584] = {.lex_state = 32}, [585] = {.lex_state = 32}, - [586] = {.lex_state = 34}, - [587] = {.lex_state = 34}, - [588] = {.lex_state = 34}, + [586] = {.lex_state = 32}, + [587] = {.lex_state = 32}, + [588] = {.lex_state = 32}, [589] = {.lex_state = 32}, - [590] = {.lex_state = 34}, - [591] = {.lex_state = 34}, - [592] = {.lex_state = 34}, - [593] = {.lex_state = 34}, - [594] = {.lex_state = 34}, - [595] = {.lex_state = 34}, - [596] = {.lex_state = 34}, - [597] = {.lex_state = 34}, - [598] = {.lex_state = 34}, - [599] = {.lex_state = 34}, - [600] = {.lex_state = 34}, - [601] = {.lex_state = 34}, - [602] = {.lex_state = 34}, - [603] = {.lex_state = 33}, - [604] = {.lex_state = 34}, - [605] = {.lex_state = 34}, - [606] = {.lex_state = 34}, - [607] = {.lex_state = 34}, - [608] = {.lex_state = 34}, - [609] = {.lex_state = 34}, - [610] = {.lex_state = 34}, + [590] = {.lex_state = 32}, + [591] = {.lex_state = 32}, + [592] = {.lex_state = 32}, + [593] = {.lex_state = 32}, + [594] = {.lex_state = 32}, + [595] = {.lex_state = 32}, + [596] = {.lex_state = 32}, + [597] = {.lex_state = 32}, + [598] = {.lex_state = 32}, + [599] = {.lex_state = 32}, + [600] = {.lex_state = 32}, + [601] = {.lex_state = 83}, + [602] = {.lex_state = 32}, + [603] = {.lex_state = 83}, + [604] = {.lex_state = 32}, + [605] = {.lex_state = 32}, + [606] = {.lex_state = 32}, + [607] = {.lex_state = 32}, + [608] = {.lex_state = 32}, + [609] = {.lex_state = 32}, + [610] = {.lex_state = 32}, [611] = {.lex_state = 32}, - [612] = {.lex_state = 34}, - [613] = {.lex_state = 34}, - [614] = {.lex_state = 34}, - [615] = {.lex_state = 34}, - [616] = {.lex_state = 34}, - [617] = {.lex_state = 34}, - [618] = {.lex_state = 34}, + [612] = {.lex_state = 32}, + [613] = {.lex_state = 32}, + [614] = {.lex_state = 32}, + [615] = {.lex_state = 32}, + [616] = {.lex_state = 32}, + [617] = {.lex_state = 32}, + [618] = {.lex_state = 83}, [619] = {.lex_state = 34}, [620] = {.lex_state = 33}, - [621] = {.lex_state = 34}, - [622] = {.lex_state = 83}, - [623] = {.lex_state = 83}, - [624] = {.lex_state = 83}, - [625] = {.lex_state = 34}, - [626] = {.lex_state = 34}, - [627] = {.lex_state = 34}, + [621] = {.lex_state = 32}, + [622] = {.lex_state = 32}, + [623] = {.lex_state = 32}, + [624] = {.lex_state = 32}, + [625] = {.lex_state = 32}, + [626] = {.lex_state = 32}, + [627] = {.lex_state = 32}, [628] = {.lex_state = 34}, - [629] = {.lex_state = 34}, - [630] = {.lex_state = 34}, - [631] = {.lex_state = 34}, + [629] = {.lex_state = 32}, + [630] = {.lex_state = 32}, + [631] = {.lex_state = 32}, [632] = {.lex_state = 34}, - [633] = {.lex_state = 34}, - [634] = {.lex_state = 34}, - [635] = {.lex_state = 34}, - [636] = {.lex_state = 33}, - [637] = {.lex_state = 34}, - [638] = {.lex_state = 34}, - [639] = {.lex_state = 34}, - [640] = {.lex_state = 34}, - [641] = {.lex_state = 33}, - [642] = {.lex_state = 33}, - [643] = {.lex_state = 34}, - [644] = {.lex_state = 34}, + [633] = {.lex_state = 32}, + [634] = {.lex_state = 33}, + [635] = {.lex_state = 32}, + [636] = {.lex_state = 32}, + [637] = {.lex_state = 32}, + [638] = {.lex_state = 32}, + [639] = {.lex_state = 33}, + [640] = {.lex_state = 32}, + [641] = {.lex_state = 32}, + [642] = {.lex_state = 32}, + [643] = {.lex_state = 32}, + [644] = {.lex_state = 33}, [645] = {.lex_state = 33}, - [646] = {.lex_state = 34}, - [647] = {.lex_state = 34}, - [648] = {.lex_state = 33}, - [649] = {.lex_state = 34}, - [650] = {.lex_state = 34}, - [651] = {.lex_state = 34}, - [652] = {.lex_state = 34}, - [653] = {.lex_state = 34}, - [654] = {.lex_state = 34}, + [646] = {.lex_state = 32}, + [647] = {.lex_state = 32}, + [648] = {.lex_state = 32}, + [649] = {.lex_state = 32}, + [650] = {.lex_state = 32}, + [651] = {.lex_state = 32}, + [652] = {.lex_state = 33}, + [653] = {.lex_state = 32}, + [654] = {.lex_state = 32}, [655] = {.lex_state = 33}, - [656] = {.lex_state = 34}, - [657] = {.lex_state = 33}, - [658] = {.lex_state = 83}, - [659] = {.lex_state = 83}, - [660] = {.lex_state = 33}, - [661] = {.lex_state = 33}, - [662] = {.lex_state = 33}, - [663] = {.lex_state = 33}, - [664] = {.lex_state = 33}, - [665] = {.lex_state = 34}, - [666] = {.lex_state = 34}, - [667] = {.lex_state = 33}, - [668] = {.lex_state = 34}, - [669] = {.lex_state = 33}, + [656] = {.lex_state = 32}, + [657] = {.lex_state = 32}, + [658] = {.lex_state = 32}, + [659] = {.lex_state = 32}, + [660] = {.lex_state = 32}, + [661] = {.lex_state = 32}, + [662] = {.lex_state = 32}, + [663] = {.lex_state = 83}, + [664] = {.lex_state = 32}, + [665] = {.lex_state = 33}, + [666] = {.lex_state = 32}, + [667] = {.lex_state = 32}, + [668] = {.lex_state = 33}, + [669] = {.lex_state = 83}, [670] = {.lex_state = 33}, [671] = {.lex_state = 33}, - [672] = {.lex_state = 34}, - [673] = {.lex_state = 33}, + [672] = {.lex_state = 33}, + [673] = {.lex_state = 32}, [674] = {.lex_state = 33}, [675] = {.lex_state = 33}, [676] = {.lex_state = 33}, [677] = {.lex_state = 33}, - [678] = {.lex_state = 33}, + [678] = {.lex_state = 32}, [679] = {.lex_state = 33}, [680] = {.lex_state = 33}, [681] = {.lex_state = 33}, - [682] = {.lex_state = 34}, - [683] = {.lex_state = 34}, - [684] = {.lex_state = 34}, - [685] = {.lex_state = 33}, - [686] = {.lex_state = 34}, - [687] = {.lex_state = 34}, + [682] = {.lex_state = 32}, + [683] = {.lex_state = 32}, + [684] = {.lex_state = 32}, + [685] = {.lex_state = 32}, + [686] = {.lex_state = 33}, + [687] = {.lex_state = 32}, [688] = {.lex_state = 33}, - [689] = {.lex_state = 33}, - [690] = {.lex_state = 34}, - [691] = {.lex_state = 34}, - [692] = {.lex_state = 33}, - [693] = {.lex_state = 34}, - [694] = {.lex_state = 34}, + [689] = {.lex_state = 32}, + [690] = {.lex_state = 32}, + [691] = {.lex_state = 33}, + [692] = {.lex_state = 32}, + [693] = {.lex_state = 33}, + [694] = {.lex_state = 33}, [695] = {.lex_state = 33}, - [696] = {.lex_state = 33}, + [696] = {.lex_state = 32}, [697] = {.lex_state = 33}, - [698] = {.lex_state = 33}, + [698] = {.lex_state = 32}, [699] = {.lex_state = 33}, [700] = {.lex_state = 33}, [701] = {.lex_state = 33}, [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}, - [709] = {.lex_state = 32}, - [710] = {.lex_state = 34}, - [711] = {.lex_state = 34}, - [712] = {.lex_state = 34}, - [713] = {.lex_state = 34}, - [714] = {.lex_state = 34}, - [715] = {.lex_state = 34}, + [705] = {.lex_state = 33}, + [706] = {.lex_state = 32}, + [707] = {.lex_state = 33}, + [708] = {.lex_state = 33}, + [709] = {.lex_state = 33}, + [710] = {.lex_state = 33}, + [711] = {.lex_state = 33}, + [712] = {.lex_state = 33}, + [713] = {.lex_state = 33}, + [714] = {.lex_state = 33}, + [715] = {.lex_state = 32}, [716] = {.lex_state = 32}, [717] = {.lex_state = 34}, - [718] = {.lex_state = 32}, + [718] = {.lex_state = 34}, [719] = {.lex_state = 32}, [720] = {.lex_state = 32}, - [721] = {.lex_state = 33}, - [722] = {.lex_state = 34}, + [721] = {.lex_state = 32}, + [722] = {.lex_state = 31}, [723] = {.lex_state = 32}, [724] = {.lex_state = 32}, - [725] = {.lex_state = 31}, - [726] = {.lex_state = 31}, - [727] = {.lex_state = 33}, - [728] = {.lex_state = 32}, - [729] = {.lex_state = 32}, - [730] = {.lex_state = 34}, - [731] = {.lex_state = 31}, + [725] = {.lex_state = 32}, + [726] = {.lex_state = 32}, + [727] = {.lex_state = 32}, + [728] = {.lex_state = 34}, + [729] = {.lex_state = 34}, + [730] = {.lex_state = 32}, + [731] = {.lex_state = 34}, [732] = {.lex_state = 34}, [733] = {.lex_state = 34}, - [734] = {.lex_state = 32}, - [735] = {.lex_state = 32}, - [736] = {.lex_state = 32}, - [737] = {.lex_state = 32}, - [738] = {.lex_state = 32}, - [739] = {.lex_state = 32}, + [734] = {.lex_state = 34}, + [735] = {.lex_state = 34}, + [736] = {.lex_state = 34}, + [737] = {.lex_state = 34}, + [738] = {.lex_state = 34}, + [739] = {.lex_state = 34}, [740] = {.lex_state = 34}, - [741] = {.lex_state = 32}, + [741] = {.lex_state = 34}, [742] = {.lex_state = 34}, [743] = {.lex_state = 34}, [744] = {.lex_state = 34}, [745] = {.lex_state = 32}, - [746] = {.lex_state = 34}, - [747] = {.lex_state = 34}, + [746] = {.lex_state = 31}, + [747] = {.lex_state = 32}, [748] = {.lex_state = 34}, [749] = {.lex_state = 34}, - [750] = {.lex_state = 34}, - [751] = {.lex_state = 34}, + [750] = {.lex_state = 32}, + [751] = {.lex_state = 32}, [752] = {.lex_state = 32}, [753] = {.lex_state = 32}, - [754] = {.lex_state = 34}, - [755] = {.lex_state = 34}, - [756] = {.lex_state = 34}, - [757] = {.lex_state = 34}, - [758] = {.lex_state = 33}, - [759] = {.lex_state = 34}, - [760] = {.lex_state = 34}, - [761] = {.lex_state = 34}, - [762] = {.lex_state = 34}, - [763] = {.lex_state = 34}, - [764] = {.lex_state = 34}, - [765] = {.lex_state = 34}, - [766] = {.lex_state = 34}, - [767] = {.lex_state = 34}, - [768] = {.lex_state = 34}, - [769] = {.lex_state = 34}, - [770] = {.lex_state = 34}, - [771] = {.lex_state = 34}, - [772] = {.lex_state = 34}, - [773] = {.lex_state = 34}, - [774] = {.lex_state = 34}, - [775] = {.lex_state = 34}, - [776] = {.lex_state = 34}, - [777] = {.lex_state = 34}, - [778] = {.lex_state = 34}, - [779] = {.lex_state = 34}, - [780] = {.lex_state = 34}, - [781] = {.lex_state = 34}, - [782] = {.lex_state = 34}, - [783] = {.lex_state = 34}, - [784] = {.lex_state = 34}, - [785] = {.lex_state = 34}, - [786] = {.lex_state = 34}, - [787] = {.lex_state = 34}, - [788] = {.lex_state = 34}, - [789] = {.lex_state = 34}, - [790] = {.lex_state = 34}, - [791] = {.lex_state = 34}, - [792] = {.lex_state = 34}, - [793] = {.lex_state = 34}, - [794] = {.lex_state = 34}, - [795] = {.lex_state = 34}, - [796] = {.lex_state = 34}, - [797] = {.lex_state = 34}, - [798] = {.lex_state = 34}, - [799] = {.lex_state = 34}, - [800] = {.lex_state = 34}, - [801] = {.lex_state = 34}, - [802] = {.lex_state = 34}, - [803] = {.lex_state = 34}, - [804] = {.lex_state = 34}, - [805] = {.lex_state = 34}, - [806] = {.lex_state = 34}, - [807] = {.lex_state = 34}, - [808] = {.lex_state = 34}, - [809] = {.lex_state = 34}, - [810] = {.lex_state = 34}, - [811] = {.lex_state = 34}, - [812] = {.lex_state = 34}, - [813] = {.lex_state = 34}, - [814] = {.lex_state = 34}, - [815] = {.lex_state = 34}, - [816] = {.lex_state = 34}, - [817] = {.lex_state = 33}, - [818] = {.lex_state = 33}, - [819] = {.lex_state = 34}, - [820] = {.lex_state = 34}, - [821] = {.lex_state = 34}, - [822] = {.lex_state = 33}, - [823] = {.lex_state = 34}, - [824] = {.lex_state = 34}, - [825] = {.lex_state = 34}, - [826] = {.lex_state = 34}, - [827] = {.lex_state = 34}, + [754] = {.lex_state = 33}, + [755] = {.lex_state = 32}, + [756] = {.lex_state = 32}, + [757] = {.lex_state = 31}, + [758] = {.lex_state = 32}, + [759] = {.lex_state = 32}, + [760] = {.lex_state = 32}, + [761] = {.lex_state = 32}, + [762] = {.lex_state = 31}, + [763] = {.lex_state = 32}, + [764] = {.lex_state = 32}, + [765] = {.lex_state = 33}, + [766] = {.lex_state = 32}, + [767] = {.lex_state = 32}, + [768] = {.lex_state = 32}, + [769] = {.lex_state = 32}, + [770] = {.lex_state = 32}, + [771] = {.lex_state = 32}, + [772] = {.lex_state = 32}, + [773] = {.lex_state = 32}, + [774] = {.lex_state = 32}, + [775] = {.lex_state = 32}, + [776] = {.lex_state = 32}, + [777] = {.lex_state = 32}, + [778] = {.lex_state = 32}, + [779] = {.lex_state = 32}, + [780] = {.lex_state = 32}, + [781] = {.lex_state = 32}, + [782] = {.lex_state = 32}, + [783] = {.lex_state = 32}, + [784] = {.lex_state = 32}, + [785] = {.lex_state = 32}, + [786] = {.lex_state = 32}, + [787] = {.lex_state = 32}, + [788] = {.lex_state = 32}, + [789] = {.lex_state = 32}, + [790] = {.lex_state = 32}, + [791] = {.lex_state = 32}, + [792] = {.lex_state = 32}, + [793] = {.lex_state = 32}, + [794] = {.lex_state = 32}, + [795] = {.lex_state = 32}, + [796] = {.lex_state = 32}, + [797] = {.lex_state = 32}, + [798] = {.lex_state = 32}, + [799] = {.lex_state = 32}, + [800] = {.lex_state = 32}, + [801] = {.lex_state = 33}, + [802] = {.lex_state = 32}, + [803] = {.lex_state = 32}, + [804] = {.lex_state = 32}, + [805] = {.lex_state = 32}, + [806] = {.lex_state = 32}, + [807] = {.lex_state = 32}, + [808] = {.lex_state = 32}, + [809] = {.lex_state = 32}, + [810] = {.lex_state = 32}, + [811] = {.lex_state = 32}, + [812] = {.lex_state = 32}, + [813] = {.lex_state = 32}, + [814] = {.lex_state = 32}, + [815] = {.lex_state = 32}, + [816] = {.lex_state = 32}, + [817] = {.lex_state = 32}, + [818] = {.lex_state = 32}, + [819] = {.lex_state = 32}, + [820] = {.lex_state = 32}, + [821] = {.lex_state = 32}, + [822] = {.lex_state = 32}, + [823] = {.lex_state = 33}, + [824] = {.lex_state = 33}, + [825] = {.lex_state = 33}, + [826] = {.lex_state = 32}, + [827] = {.lex_state = 32}, [828] = {.lex_state = 33}, - [829] = {.lex_state = 34}, - [830] = {.lex_state = 33}, - [831] = {.lex_state = 34}, - [832] = {.lex_state = 33}, - [833] = {.lex_state = 33}, + [829] = {.lex_state = 33}, + [830] = {.lex_state = 32}, + [831] = {.lex_state = 32}, + [832] = {.lex_state = 32}, + [833] = {.lex_state = 32}, [834] = {.lex_state = 33}, - [835] = {.lex_state = 34}, - [836] = {.lex_state = 34}, - [837] = {.lex_state = 34}, - [838] = {.lex_state = 34}, - [839] = {.lex_state = 33}, - [840] = {.lex_state = 34}, - [841] = {.lex_state = 34}, - [842] = {.lex_state = 34}, - [843] = {.lex_state = 34}, - [844] = {.lex_state = 34}, - [845] = {.lex_state = 33}, - [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}, - [853] = {.lex_state = 34}, - [854] = {.lex_state = 34}, - [855] = {.lex_state = 34}, - [856] = {.lex_state = 34}, - [857] = {.lex_state = 33}, - [858] = {.lex_state = 34}, - [859] = {.lex_state = 34}, - [860] = {.lex_state = 33}, - [861] = {.lex_state = 33}, + [835] = {.lex_state = 32}, + [836] = {.lex_state = 32}, + [837] = {.lex_state = 32}, + [838] = {.lex_state = 33}, + [839] = {.lex_state = 32}, + [840] = {.lex_state = 32}, + [841] = {.lex_state = 32}, + [842] = {.lex_state = 32}, + [843] = {.lex_state = 32}, + [844] = {.lex_state = 33}, + [845] = {.lex_state = 32}, + [846] = {.lex_state = 32}, + [847] = {.lex_state = 32}, + [848] = {.lex_state = 32}, + [849] = {.lex_state = 32}, + [850] = {.lex_state = 32}, + [851] = {.lex_state = 32}, + [852] = {.lex_state = 32}, + [853] = {.lex_state = 32}, + [854] = {.lex_state = 32}, + [855] = {.lex_state = 33}, + [856] = {.lex_state = 32}, + [857] = {.lex_state = 32}, + [858] = {.lex_state = 33}, + [859] = {.lex_state = 32}, + [860] = {.lex_state = 32}, + [861] = {.lex_state = 32}, [862] = {.lex_state = 33}, - [863] = {.lex_state = 33}, - [864] = {.lex_state = 33}, - [865] = {.lex_state = 33}, + [863] = {.lex_state = 32}, + [864] = {.lex_state = 32}, + [865] = {.lex_state = 32}, [866] = {.lex_state = 33}, - [867] = {.lex_state = 33}, - [868] = {.lex_state = 33}, - [869] = {.lex_state = 33}, + [867] = {.lex_state = 32}, + [868] = {.lex_state = 32}, + [869] = {.lex_state = 32}, [870] = {.lex_state = 33}, [871] = {.lex_state = 33}, [872] = {.lex_state = 33}, @@ -12164,30 +12333,30 @@ 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}, + [909] = {.lex_state = 33}, [910] = {.lex_state = 33}, - [911] = {.lex_state = 30}, - [912] = {.lex_state = 30}, - [913] = {.lex_state = 30}, - [914] = {.lex_state = 30}, - [915] = {.lex_state = 30}, - [916] = {.lex_state = 30}, + [911] = {.lex_state = 33}, + [912] = {.lex_state = 33}, + [913] = {.lex_state = 33}, + [914] = {.lex_state = 33}, + [915] = {.lex_state = 17}, + [916] = {.lex_state = 33}, [917] = {.lex_state = 30}, - [918] = {.lex_state = 30}, - [919] = {.lex_state = 30}, - [920] = {.lex_state = 33}, - [921] = {.lex_state = 33}, - [922] = {.lex_state = 33}, + [918] = {.lex_state = 33}, + [919] = {.lex_state = 33}, + [920] = {.lex_state = 30}, + [921] = {.lex_state = 30}, + [922] = {.lex_state = 30}, [923] = {.lex_state = 30}, [924] = {.lex_state = 30}, [925] = {.lex_state = 30}, [926] = {.lex_state = 30}, - [927] = {.lex_state = 30}, - [928] = {.lex_state = 30}, + [927] = {.lex_state = 33}, + [928] = {.lex_state = 33}, [929] = {.lex_state = 30}, [930] = {.lex_state = 33}, [931] = {.lex_state = 33}, @@ -12195,158 +12364,158 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [933] = {.lex_state = 33}, [934] = {.lex_state = 33}, [935] = {.lex_state = 33}, - [936] = {.lex_state = 30}, - [937] = {.lex_state = 33}, - [938] = {.lex_state = 30}, + [936] = {.lex_state = 33}, + [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}, - [945] = {.lex_state = 33}, - [946] = {.lex_state = 30}, + [945] = {.lex_state = 30}, + [946] = {.lex_state = 33}, [947] = {.lex_state = 30}, - [948] = {.lex_state = 30}, + [948] = {.lex_state = 33}, [949] = {.lex_state = 30}, - [950] = {.lex_state = 33}, - [951] = {.lex_state = 30}, - [952] = {.lex_state = 30}, - [953] = {.lex_state = 30}, - [954] = {.lex_state = 33}, + [950] = {.lex_state = 30}, + [951] = {.lex_state = 33}, + [952] = {.lex_state = 33}, + [953] = {.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}, - [961] = {.lex_state = 33}, + [960] = {.lex_state = 30}, + [961] = {.lex_state = 30}, [962] = {.lex_state = 30}, - [963] = {.lex_state = 30}, - [964] = {.lex_state = 33}, - [965] = {.lex_state = 33}, - [966] = {.lex_state = 19}, - [967] = {.lex_state = 33}, - [968] = {.lex_state = 19}, - [969] = {.lex_state = 33}, - [970] = {.lex_state = 19}, - [971] = {.lex_state = 19}, - [972] = {.lex_state = 19}, - [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}, + [963] = {.lex_state = 33}, + [964] = {.lex_state = 30}, + [965] = {.lex_state = 30}, + [966] = {.lex_state = 30}, + [967] = {.lex_state = 30}, + [968] = {.lex_state = 30}, + [969] = {.lex_state = 30}, + [970] = {.lex_state = 33}, + [971] = {.lex_state = 33}, + [972] = {.lex_state = 33}, + [973] = {.lex_state = 30}, + [974] = {.lex_state = 30}, + [975] = {.lex_state = 30}, + [976] = {.lex_state = 17}, + [977] = {.lex_state = 17}, + [978] = {.lex_state = 33}, + [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}, + [985] = {.lex_state = 17}, + [986] = {.lex_state = 33}, + [987] = {.lex_state = 33}, + [988] = {.lex_state = 33}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 33}, + [991] = {.lex_state = 17}, + [992] = {.lex_state = 17}, + [993] = {.lex_state = 33}, + [994] = {.lex_state = 17}, [995] = {.lex_state = 33}, [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}, + [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 = 17}, + [1004] = {.lex_state = 17}, + [1005] = {.lex_state = 17}, [1006] = {.lex_state = 33}, - [1007] = {.lex_state = 19}, - [1008] = {.lex_state = 33}, - [1009] = {.lex_state = 33}, + [1007] = {.lex_state = 33}, + [1008] = {.lex_state = 17}, + [1009] = {.lex_state = 17}, [1010] = {.lex_state = 33}, - [1011] = {.lex_state = 33}, - [1012] = {.lex_state = 33}, - [1013] = {.lex_state = 33}, - [1014] = {.lex_state = 33}, - [1015] = {.lex_state = 33}, + [1011] = {.lex_state = 17}, + [1012] = {.lex_state = 17}, + [1013] = {.lex_state = 17}, + [1014] = {.lex_state = 17}, + [1015] = {.lex_state = 17}, [1016] = {.lex_state = 33}, [1017] = {.lex_state = 33}, - [1018] = {.lex_state = 33}, - [1019] = {.lex_state = 33}, + [1018] = {.lex_state = 17}, + [1019] = {.lex_state = 17}, [1020] = {.lex_state = 33}, [1021] = {.lex_state = 33}, [1022] = {.lex_state = 33}, - [1023] = {.lex_state = 83}, - [1024] = {.lex_state = 83}, - [1025] = {.lex_state = 83}, + [1023] = {.lex_state = 33}, + [1024] = {.lex_state = 33}, + [1025] = {.lex_state = 33}, [1026] = {.lex_state = 33}, [1027] = {.lex_state = 33}, [1028] = {.lex_state = 33}, [1029] = {.lex_state = 33}, - [1030] = {.lex_state = 83}, - [1031] = {.lex_state = 83}, + [1030] = {.lex_state = 33}, + [1031] = {.lex_state = 33}, [1032] = {.lex_state = 33}, - [1033] = {.lex_state = 83}, - [1034] = {.lex_state = 33}, - [1035] = {.lex_state = 33}, + [1033] = {.lex_state = 33}, + [1034] = {.lex_state = 83}, + [1035] = {.lex_state = 83}, [1036] = {.lex_state = 33}, [1037] = {.lex_state = 33}, [1038] = {.lex_state = 33}, - [1039] = {.lex_state = 33}, - [1040] = {.lex_state = 33}, + [1039] = {.lex_state = 83}, + [1040] = {.lex_state = 83}, [1041] = {.lex_state = 33}, - [1042] = {.lex_state = 33}, - [1043] = {.lex_state = 83}, + [1042] = {.lex_state = 83}, + [1043] = {.lex_state = 33}, [1044] = {.lex_state = 33}, [1045] = {.lex_state = 33}, [1046] = {.lex_state = 33}, [1047] = {.lex_state = 33}, [1048] = {.lex_state = 83}, - [1049] = {.lex_state = 83}, - [1050] = {.lex_state = 33}, + [1049] = {.lex_state = 33}, + [1050] = {.lex_state = 83}, [1051] = {.lex_state = 33}, [1052] = {.lex_state = 33}, - [1053] = {.lex_state = 83}, - [1054] = {.lex_state = 33}, - [1055] = {.lex_state = 33}, - [1056] = {.lex_state = 83}, + [1053] = {.lex_state = 33}, + [1054] = {.lex_state = 83}, + [1055] = {.lex_state = 83}, + [1056] = {.lex_state = 33}, [1057] = {.lex_state = 33}, - [1058] = {.lex_state = 83}, + [1058] = {.lex_state = 33}, [1059] = {.lex_state = 83}, [1060] = {.lex_state = 33}, [1061] = {.lex_state = 33}, [1062] = {.lex_state = 83}, [1063] = {.lex_state = 83}, - [1064] = {.lex_state = 83}, + [1064] = {.lex_state = 33}, [1065] = {.lex_state = 33}, - [1066] = {.lex_state = 83}, - [1067] = {.lex_state = 83}, - [1068] = {.lex_state = 83}, + [1066] = {.lex_state = 33}, + [1067] = {.lex_state = 33}, + [1068] = {.lex_state = 33}, [1069] = {.lex_state = 83}, [1070] = {.lex_state = 83}, [1071] = {.lex_state = 83}, - [1072] = {.lex_state = 83}, - [1073] = {.lex_state = 35}, + [1072] = {.lex_state = 33}, + [1073] = {.lex_state = 83}, [1074] = {.lex_state = 83}, [1075] = {.lex_state = 83}, [1076] = {.lex_state = 83}, - [1077] = {.lex_state = 83}, - [1078] = {.lex_state = 35}, - [1079] = {.lex_state = 83}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 33}, + [1079] = {.lex_state = 33}, [1080] = {.lex_state = 83}, - [1081] = {.lex_state = 83}, + [1081] = {.lex_state = 0}, [1082] = {.lex_state = 83}, - [1083] = {.lex_state = 35}, - [1084] = {.lex_state = 35}, - [1085] = {.lex_state = 83}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 83}, + [1085] = {.lex_state = 35}, [1086] = {.lex_state = 83}, - [1087] = {.lex_state = 83}, + [1087] = {.lex_state = 35}, [1088] = {.lex_state = 83}, [1089] = {.lex_state = 83}, [1090] = {.lex_state = 83}, @@ -12356,12 +12525,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1094] = {.lex_state = 83}, [1095] = {.lex_state = 83}, [1096] = {.lex_state = 83}, - [1097] = {.lex_state = 83}, + [1097] = {.lex_state = 35}, [1098] = {.lex_state = 83}, [1099] = {.lex_state = 83}, [1100] = {.lex_state = 83}, [1101] = {.lex_state = 83}, - [1102] = {.lex_state = 83}, + [1102] = {.lex_state = 35}, [1103] = {.lex_state = 83}, [1104] = {.lex_state = 83}, [1105] = {.lex_state = 83}, @@ -12375,379 +12544,436 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 83}, [1114] = {.lex_state = 83}, [1115] = {.lex_state = 83}, - [1116] = {.lex_state = 83}, - [1117] = {.lex_state = 83}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 83}, - [1119] = {.lex_state = 83}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 83}, - [1121] = {.lex_state = 83}, + [1121] = {.lex_state = 0}, [1122] = {.lex_state = 83}, [1123] = {.lex_state = 83}, [1124] = {.lex_state = 83}, [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}, [1132] = {.lex_state = 83}, - [1133] = {.lex_state = 83}, + [1133] = {.lex_state = 33}, [1134] = {.lex_state = 83}, [1135] = {.lex_state = 83}, [1136] = {.lex_state = 83}, - [1137] = {.lex_state = 83}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 83}, [1139] = {.lex_state = 83}, - [1140] = {.lex_state = 83}, + [1140] = {.lex_state = 0}, [1141] = {.lex_state = 83}, - [1142] = {.lex_state = 83}, - [1143] = {.lex_state = 33}, + [1142] = {.lex_state = 33}, + [1143] = {.lex_state = 83}, [1144] = {.lex_state = 83}, - [1145] = {.lex_state = 83}, + [1145] = {.lex_state = 33}, [1146] = {.lex_state = 83}, - [1147] = {.lex_state = 33}, - [1148] = {.lex_state = 83}, - [1149] = {.lex_state = 22}, - [1150] = {.lex_state = 22}, + [1147] = {.lex_state = 83}, + [1148] = {.lex_state = 28}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 33}, [1151] = {.lex_state = 83}, - [1152] = {.lex_state = 83}, - [1153] = {.lex_state = 24}, - [1154] = {.lex_state = 24}, - [1155] = {.lex_state = 22}, - [1156] = {.lex_state = 22}, - [1157] = {.lex_state = 24}, - [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}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, + [1152] = {.lex_state = 33}, + [1153] = {.lex_state = 83}, + [1154] = {.lex_state = 83}, + [1155] = {.lex_state = 83}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 83}, + [1158] = {.lex_state = 83}, + [1159] = {.lex_state = 83}, + [1160] = {.lex_state = 83}, + [1161] = {.lex_state = 83}, + [1162] = {.lex_state = 83}, + [1163] = {.lex_state = 83}, + [1164] = {.lex_state = 83}, + [1165] = {.lex_state = 83}, + [1166] = {.lex_state = 83}, + [1167] = {.lex_state = 83}, + [1168] = {.lex_state = 83}, + [1169] = {.lex_state = 83}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 22}, + [1172] = {.lex_state = 24}, + [1173] = {.lex_state = 24}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 19}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 33}, - [1182] = {.lex_state = 28}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1176] = {.lex_state = 24}, + [1177] = {.lex_state = 24}, + [1178] = {.lex_state = 22}, + [1179] = {.lex_state = 24}, + [1180] = {.lex_state = 22}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 22}, + [1183] = {.lex_state = 22}, + [1184] = {.lex_state = 33}, + [1185] = {.lex_state = 22}, + [1186] = {.lex_state = 83}, [1187] = {.lex_state = 28}, - [1188] = {.lex_state = 28}, - [1189] = {.lex_state = 83}, - [1190] = {.lex_state = 0}, + [1188] = {.lex_state = 33}, + [1189] = {.lex_state = 24}, + [1190] = {.lex_state = 24}, [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, + [1195] = {.lex_state = 22}, [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 28}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1200] = {.lex_state = 83}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1207] = {.lex_state = 33}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 19}, + [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 28}, + [1212] = {.lex_state = 0}, [1213] = {.lex_state = 28}, - [1214] = {.lex_state = 33}, + [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 28}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 33}, + [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 19}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 33}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 83}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 17}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 83}, - [1230] = {.lex_state = 33}, + [1228] = {.lex_state = 17}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 26}, - [1236] = {.lex_state = 83}, - [1237] = {.lex_state = 33}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 83}, - [1240] = {.lex_state = 25}, - [1241] = {.lex_state = 83}, - [1242] = {.lex_state = 83}, + [1234] = {.lex_state = 28}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 17}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 33}, + [1242] = {.lex_state = 0}, [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 25}, - [1245] = {.lex_state = 25}, - [1246] = {.lex_state = 25}, - [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}, - [1260] = {.lex_state = 83}, - [1261] = {.lex_state = 25}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 83}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 83}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 17}, + [1248] = {.lex_state = 33}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 28}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 28}, + [1255] = {.lex_state = 28}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 28}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 28}, + [1263] = {.lex_state = 33}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 83}, - [1266] = {.lex_state = 26}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 25}, - [1269] = {.lex_state = 28}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 33}, + [1268] = {.lex_state = 33}, + [1269] = {.lex_state = 0}, [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}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 28}, + [1275] = {.lex_state = 83}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 23}, + [1278] = {.lex_state = 83}, + [1279] = {.lex_state = 28}, + [1280] = {.lex_state = 33}, + [1281] = {.lex_state = 23}, + [1282] = {.lex_state = 23}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 25}, - [1285] = {.lex_state = 33}, + [1284] = {.lex_state = 33}, + [1285] = {.lex_state = 23}, [1286] = {.lex_state = 83}, - [1287] = {.lex_state = 25}, - [1288] = {.lex_state = 28}, - [1289] = {.lex_state = 25}, + [1287] = {.lex_state = 33}, + [1288] = {.lex_state = 23}, + [1289] = {.lex_state = 23}, [1290] = {.lex_state = 83}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 27}, - [1294] = {.lex_state = 19}, - [1295] = {.lex_state = 27}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 27}, - [1298] = {.lex_state = 27}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 19}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, + [1291] = {.lex_state = 23}, + [1292] = {.lex_state = 83}, + [1293] = {.lex_state = 26}, + [1294] = {.lex_state = 33}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 23}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 33}, + [1299] = {.lex_state = 83}, + [1300] = {.lex_state = 83}, + [1301] = {.lex_state = 26}, + [1302] = {.lex_state = 23}, + [1303] = {.lex_state = 23}, + [1304] = {.lex_state = 83}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 33}, - [1309] = {.lex_state = 27}, - [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}, + [1306] = {.lex_state = 83}, + [1307] = {.lex_state = 83}, + [1308] = {.lex_state = 83}, + [1309] = {.lex_state = 26}, + [1310] = {.lex_state = 83}, + [1311] = {.lex_state = 83}, + [1312] = {.lex_state = 83}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 23}, + [1315] = {.lex_state = 33}, + [1316] = {.lex_state = 83}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 23}, + [1320] = {.lex_state = 33}, [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 19}, - [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}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 27}, - [1337] = {.lex_state = 33}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 0}, + [1322] = {.lex_state = 28}, + [1323] = {.lex_state = 83}, + [1324] = {.lex_state = 83}, + [1325] = {.lex_state = 83}, + [1326] = {.lex_state = 23}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 33}, + [1329] = {.lex_state = 23}, + [1330] = {.lex_state = 23}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 23}, + [1334] = {.lex_state = 33}, + [1335] = {.lex_state = 23}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 27}, + [1339] = {.lex_state = 17}, + [1340] = {.lex_state = 17}, [1341] = {.lex_state = 27}, - [1342] = {.lex_state = 19}, + [1342] = {.lex_state = 33}, [1343] = {.lex_state = 27}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, + [1346] = {.lex_state = 17}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 27}, + [1348] = {.lex_state = 17}, [1349] = {.lex_state = 0}, [1350] = {.lex_state = 27}, - [1351] = {.lex_state = 0}, + [1351] = {.lex_state = 27}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 27}, - [1354] = {.lex_state = 27}, - [1355] = {.lex_state = 19}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 33}, - [1358] = {.lex_state = 27}, - [1359] = {.lex_state = 19}, - [1360] = {.lex_state = 33}, - [1361] = {.lex_state = 33}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 33}, + [1363] = {.lex_state = 27}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 19}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 19}, - [1370] = {.lex_state = 27}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 19}, - [1373] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 17}, + [1371] = {.lex_state = 17}, + [1372] = {.lex_state = 27}, + [1373] = {.lex_state = 17}, [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 83}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 33}, + [1375] = {.lex_state = 27}, + [1376] = {.lex_state = 17}, + [1377] = {.lex_state = 17}, + [1378] = {.lex_state = 33}, + [1379] = {.lex_state = 17}, + [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 27}, - [1383] = {.lex_state = 0}, + [1382] = {.lex_state = 17}, + [1383] = {.lex_state = 17}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, + [1385] = {.lex_state = 17}, + [1386] = {.lex_state = 27}, [1387] = {.lex_state = 33}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, + [1388] = {.lex_state = 33}, + [1389] = {.lex_state = 27}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 27}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 27}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 33}, - [1396] = {.lex_state = 33}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 33}, - [1399] = {.lex_state = 27}, - [1400] = {.lex_state = 27}, + [1393] = {.lex_state = 27}, + [1394] = {.lex_state = 33}, + [1395] = {.lex_state = 17}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 27}, + [1398] = {.lex_state = 27}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 17}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 33}, + [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 27}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 27}, + [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 19}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 33}, - [1411] = {.lex_state = 0}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 17}, + [1410] = {.lex_state = 27}, + [1411] = {.lex_state = 27}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 27}, + [1413] = {.lex_state = 17}, + [1414] = {.lex_state = 27}, + [1415] = {.lex_state = 17}, [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, + [1417] = {.lex_state = 33}, + [1418] = {.lex_state = 83}, [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 19}, + [1420] = {.lex_state = 33}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 33}, - [1424] = {.lex_state = 33}, - [1425] = {.lex_state = 19}, - [1426] = {.lex_state = 0}, + [1423] = {.lex_state = 17}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 33}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 33}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 19}, - [1432] = {.lex_state = 19}, + [1431] = {.lex_state = 27}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 27}, + [1434] = {.lex_state = 0}, [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}, + [1439] = {.lex_state = 33}, + [1440] = {.lex_state = 27}, [1441] = {.lex_state = 27}, - [1442] = {.lex_state = 27}, + [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 = 27}, + [1445] = {.lex_state = 27}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 33}, + [1448] = {.lex_state = 0}, [1449] = {.lex_state = 0}, [1450] = {.lex_state = 0}, [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 83}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 33}, - [1457] = {.lex_state = 33}, + [1452] = {.lex_state = 33}, + [1453] = {.lex_state = 33}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 27}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 27}, [1458] = {.lex_state = 0}, - [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}, - [1467] = {.lex_state = 0}, + [1459] = {.lex_state = 33}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 27}, + [1464] = {.lex_state = 33}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 17}, + [1467] = {.lex_state = 33}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 33}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 27}, + [1470] = {.lex_state = 27}, + [1471] = {.lex_state = 27}, + [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 27}, + [1474] = {.lex_state = 0}, [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}, - [1486] = {.lex_state = 83}, - [1487] = {.lex_state = 33}, - [1488] = {.lex_state = 83}, + [1476] = {.lex_state = 17}, + [1477] = {.lex_state = 27}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 27}, + [1480] = {.lex_state = 33}, + [1481] = {.lex_state = 33}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 33}, + [1486] = {.lex_state = 27}, + [1487] = {.lex_state = 17}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 33}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 27}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 33}, + [1499] = {.lex_state = 83}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 33}, + [1502] = {.lex_state = 33}, + [1503] = {.lex_state = 33}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 17}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 17}, + [1511] = {.lex_state = 27}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 17}, + [1514] = {.lex_state = 33}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 17}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 83}, + [1522] = {.lex_state = 33}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 83}, + [1526] = {.lex_state = 33}, + [1527] = {.lex_state = 33}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 33}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 33}, + [1536] = {.lex_state = 83}, + [1537] = {.lex_state = 17}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 83}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 83}, + [1542] = {.lex_state = 33}, + [1543] = {.lex_state = 83}, + [1544] = {.lex_state = 33}, + [1545] = {.lex_state = 83}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12793,7 +13019,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_LBRACK_LBRACK] = ACTIONS(1), [anon_sym___declspec] = ACTIONS(1), [anon_sym___based] = ACTIONS(1), @@ -12859,6 +13084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), @@ -12878,69 +13105,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(1516), + [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(665), + [sym__declaration_specifiers] = STATE(1036), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -13002,97 +13230,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { - [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(1293), - [sym_preproc_elif] = STATE(1293), - [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_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(1486), + [sym_preproc_elif] = STATE(1486), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(665), [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(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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +13331,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 +13343,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 +13362,37 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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,26 +13402,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_preproc_else] = STATE(1457), + [sym_preproc_elif] = STATE(1457), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13202,41 +13435,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -13244,9 +13478,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), @@ -13256,7 +13490,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), @@ -13275,256 +13509,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_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_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(1398), + [sym_preproc_elif] = STATE(1398), + [sym_function_definition] = STATE(11), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(665), [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(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), - [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), - }, - [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(1350), - [sym_preproc_elif] = STATE(1350), - [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +13625,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 +13637,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 +13656,66 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(1470), + [sym_preproc_elif] = STATE(1470), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13634,41 +13729,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +13772,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 +13784,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 +13803,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(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(1471), + [sym_preproc_elif] = STATE(1471), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +13919,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 +13931,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 +13950,66 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(1343), + [sym_preproc_elif] = STATE(1343), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -13922,41 +14023,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +14066,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 +14078,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 +14097,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(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(1351), + [sym_preproc_elif] = STATE(1351), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +14213,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 +14225,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,112 +14244,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [9] = { + [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(1463), + [sym_preproc_elif] = STATE(1463), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14252,9 +14360,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), @@ -14264,7 +14372,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), @@ -14283,112 +14391,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [11] = { - [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_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1021), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(655), + [10] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(1393), + [sym_preproc_elif] = STATE(1393), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), - [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_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(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(10), - [sym_macro_type_specifier] = STATE(897), - [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14396,9 +14507,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 +14519,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 +14538,66 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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(1358), - [sym_preproc_elif] = STATE(1358), + [sym_preproc_else] = STATE(1392), + [sym_preproc_elif] = STATE(1392), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -14498,41 +14611,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14540,9 +14654,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 +14666,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 +14685,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [12] = { + [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(1341), + [sym_preproc_elif] = STATE(1341), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14684,9 +14801,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 +14813,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 +14832,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [13] = { + [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(1411), + [sym_preproc_elif] = STATE(1411), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14828,9 +14948,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 +14960,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 +14979,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [14] = { + [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(1389), + [sym_preproc_elif] = STATE(1389), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -14972,9 +15095,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 +15107,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 +15126,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [15] = { + [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(1338), + [sym_preproc_elif] = STATE(1338), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -15116,9 +15242,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 +15254,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 +15273,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [16] = { + [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(1414), + [sym_preproc_elif] = STATE(1414), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -15260,9 +15389,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 +15401,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 +15420,115 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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(1477), + [sym_preproc_elif] = STATE(1477), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -15404,9 +15536,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 +15548,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 +15567,66 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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(1298), - [sym_preproc_elif] = STATE(1298), + [sym_preproc_else] = STATE(1350), + [sym_preproc_elif] = STATE(1350), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15506,41 +15640,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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(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), @@ -15548,9 +15683,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 +15695,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 +15714,66 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [19] = { [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(1410), + [sym_preproc_elif] = STATE(1410), [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(665), + [sym__declaration_specifiers] = STATE(1032), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(641), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(645), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -15648,180 +15787,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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -15829,9 +15830,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), @@ -15841,8 +15842,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(326), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -15861,107 +15861,255 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [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(665), + [sym__declaration_specifiers] = STATE(1032), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(645), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(870), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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__Generic] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(296), + [anon_sym___asm__] = 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), + }, + [21] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -15969,9 +16117,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), @@ -15981,8 +16129,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(350), + [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), @@ -16001,108 +16149,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [22] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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__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_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -16110,9 +16260,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(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), @@ -16122,7 +16272,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(372), + [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), @@ -16141,247 +16292,111 @@ 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(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), - }, - [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), - [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__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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [23] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1028), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(639), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(872), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(357), + [aux_sym_preproc_include_token1] = ACTIONS(359), + [aux_sym_preproc_def_token1] = ACTIONS(361), + [aux_sym_preproc_if_token1] = ACTIONS(363), + [aux_sym_preproc_if_token2] = ACTIONS(365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(367), + [sym_preproc_directive] = ACTIONS(369), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16389,9 +16404,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(371), + [anon_sym_typedef] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -16401,8 +16416,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(459), + [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16421,107 +16435,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(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [24] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +16546,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 +16558,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(401), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16561,107 +16578,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [25] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +16689,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 +16701,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(403), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16701,107 +16721,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [26] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +16832,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 +16844,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(405), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16841,117 +16864,120 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [27] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(665), [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), - [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), + [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_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 +16987,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(407), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -16981,107 +17007,111 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [28] = { + [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(665), + [sym__declaration_specifiers] = STATE(1028), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(639), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(872), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(357), + [aux_sym_preproc_include_token1] = ACTIONS(359), + [aux_sym_preproc_def_token1] = ACTIONS(361), + [aux_sym_preproc_if_token1] = ACTIONS(363), + [aux_sym_preproc_if_token2] = ACTIONS(409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(367), + [sym_preproc_directive] = ACTIONS(369), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17089,9 +17119,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(371), + [anon_sym_typedef] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(375), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -17101,8 +17131,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(469), + [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17121,38 +17150,183 @@ 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(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [29] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1028), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(639), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(872), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(411), + [aux_sym_preproc_include_token1] = ACTIONS(414), + [aux_sym_preproc_def_token1] = ACTIONS(417), + [aux_sym_preproc_if_token1] = ACTIONS(420), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(423), + [aux_sym_preproc_ifdef_token2] = ACTIONS(423), + [sym_preproc_directive] = ACTIONS(426), + [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(429), + [anon_sym_typedef] = ACTIONS(432), + [anon_sym_extern] = ACTIONS(435), + [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(438), + [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(441), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_case] = ACTIONS(447), + [anon_sym_default] = ACTIONS(450), + [anon_sym_while] = ACTIONS(453), + [anon_sym_do] = ACTIONS(456), + [anon_sym_for] = ACTIONS(459), + [anon_sym_return] = ACTIONS(462), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_goto] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym__Generic] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(296), + [anon_sym___asm__] = 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), + }, + [30] = { [sym_preproc_include] = STATE(25), [sym_preproc_def] = STATE(25), [sym_preproc_function_def] = STATE(25), @@ -17162,21 +17336,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(665), + [sym__declaration_specifiers] = STATE(1033), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(655), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), - [sym_ms_call_modifier] = STATE(642), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(25), [sym_labeled_statement] = STATE(25), [sym_expression_statement] = STATE(25), @@ -17190,38 +17364,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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(897), + [sym_macro_type_specifier] = STATE(910), [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(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +17404,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 +17416,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(474), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17261,107 +17436,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [31] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +17547,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 +17559,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(476), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17401,108 +17579,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { - [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), + [32] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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(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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +17690,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 +17702,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(478), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17541,107 +17722,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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(480), + [aux_sym_preproc_include_token1] = ACTIONS(483), + [aux_sym_preproc_def_token1] = ACTIONS(486), + [aux_sym_preproc_if_token1] = ACTIONS(489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(492), + [sym_preproc_directive] = ACTIONS(495), + [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(498), + [anon_sym_typedef] = ACTIONS(501), + [anon_sym_extern] = ACTIONS(504), + [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(507), + [anon_sym_RBRACE] = ACTIONS(510), + [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(512), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(518), + [anon_sym_default] = ACTIONS(521), + [anon_sym_while] = ACTIONS(524), + [anon_sym_do] = ACTIONS(527), + [anon_sym_for] = ACTIONS(530), + [anon_sym_return] = ACTIONS(533), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_goto] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym__Generic] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(296), + [anon_sym___asm__] = 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), }, [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), + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +17976,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 +17988,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(545), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17681,107 +18008,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +18119,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 +18131,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(547), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17821,107 +18151,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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__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_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +18262,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 +18274,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(549), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -17961,107 +18294,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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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(665), + [sym__declaration_specifiers] = STATE(1036), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(665), [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__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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), [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_sized_type_specifier_repeat1] = STATE(765), + [ts_builtin_sym_end] = ACTIONS(510), + [sym_identifier] = ACTIONS(551), + [aux_sym_preproc_include_token1] = ACTIONS(554), + [aux_sym_preproc_def_token1] = ACTIONS(557), + [aux_sym_preproc_if_token1] = ACTIONS(560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(566), + [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(569), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(575), + [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(578), + [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(581), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_case] = ACTIONS(587), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(596), + [anon_sym_for] = ACTIONS(599), + [anon_sym_return] = ACTIONS(602), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_goto] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_sizeof] = ACTIONS(290), + [anon_sym__Generic] = ACTIONS(293), + [anon_sym_asm] = ACTIONS(296), + [anon_sym___asm__] = 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), + }, + [38] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -18069,9 +18548,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), @@ -18081,8 +18560,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(483), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(614), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18101,107 +18580,111 @@ 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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [39] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1036), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_ms_call_modifier] = STATE(655), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(871), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), [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_sized_type_specifier_repeat1] = STATE(765), + [ts_builtin_sym_end] = ACTIONS(616), + [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), @@ -18209,9 +18692,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), @@ -18221,8 +18704,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(485), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18241,388 +18723,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(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), - }, - [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), - [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), - [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_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), + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -18630,9 +18834,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(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), @@ -18642,7 +18846,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(372), + [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), @@ -18661,107 +18866,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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [41] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -18769,9 +18977,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), @@ -18781,8 +18989,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(617), + [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), @@ -18801,99 +19009,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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [42] = { + [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(665), + [sym__declaration_specifiers] = STATE(1033), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_ms_call_modifier] = STATE(644), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(873), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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 +19120,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(622), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -18932,91 +19152,93 @@ 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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [43] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1038), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [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), @@ -19026,270 +19248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - [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), - [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(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(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_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_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), - }, - [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), - [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19297,19 +19255,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(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(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), @@ -19328,54 +19286,56 @@ 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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [44] = { [sym_declaration] = STATE(46), [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(655), - [sym__declaration_specifiers] = STATE(1029), - [sym_attribute_specifier] = STATE(655), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1038), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(665), [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_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(46), [sym_labeled_statement] = STATE(46), [sym_expression_statement] = STATE(46), @@ -19388,40 +19348,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), [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_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), @@ -19429,19 +19390,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(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), @@ -19460,98 +19421,103 @@ 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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [45] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1038), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(630), + [aux_sym_preproc_if_token1] = ACTIONS(630), + [aux_sym_preproc_if_token2] = ACTIONS(630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(630), + [aux_sym_preproc_else_token1] = ACTIONS(630), + [aux_sym_preproc_elif_token1] = ACTIONS(630), + [sym_preproc_directive] = ACTIONS(630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19559,19 +19525,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(630), + [anon_sym___clrcall] = ACTIONS(630), + [anon_sym___stdcall] = ACTIONS(630), + [anon_sym___fastcall] = ACTIONS(630), + [anon_sym___thiscall] = ACTIONS(630), + [anon_sym___vectorcall] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19590,98 +19556,103 @@ 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(630), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [46] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1038), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(624), + [aux_sym_preproc_include_token1] = ACTIONS(632), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(632), + [aux_sym_preproc_if_token2] = ACTIONS(632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [aux_sym_preproc_else_token1] = ACTIONS(632), + [aux_sym_preproc_elif_token1] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19689,19 +19660,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(632), + [anon_sym___clrcall] = ACTIONS(632), + [anon_sym___stdcall] = ACTIONS(632), + [anon_sym___fastcall] = ACTIONS(632), + [anon_sym___thiscall] = ACTIONS(632), + [anon_sym___vectorcall] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19720,98 +19691,368 @@ 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(632), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1038), + [sym_attribute_specifier] = STATE(665), [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(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_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(634), + [aux_sym_preproc_include_token1] = ACTIONS(637), + [aux_sym_preproc_def_token1] = ACTIONS(637), + [aux_sym_preproc_if_token1] = ACTIONS(637), + [aux_sym_preproc_if_token2] = ACTIONS(637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(637), + [aux_sym_preproc_else_token1] = ACTIONS(637), + [aux_sym_preproc_elif_token1] = ACTIONS(637), + [sym_preproc_directive] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(657), + [anon_sym___attribute__] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(663), + [anon_sym___declspec] = ACTIONS(666), + [anon_sym___cdecl] = ACTIONS(637), + [anon_sym___clrcall] = ACTIONS(637), + [anon_sym___stdcall] = ACTIONS(637), + [anon_sym___fastcall] = ACTIONS(637), + [anon_sym___thiscall] = ACTIONS(637), + [anon_sym___vectorcall] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_static] = ACTIONS(657), + [anon_sym_auto] = ACTIONS(657), + [anon_sym_register] = ACTIONS(657), + [anon_sym_inline] = ACTIONS(657), + [anon_sym_const] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_restrict] = ACTIONS(672), + [anon_sym___restrict__] = ACTIONS(672), + [anon_sym__Atomic] = ACTIONS(672), + [anon_sym__Noreturn] = ACTIONS(672), + [anon_sym_signed] = ACTIONS(675), + [anon_sym_unsigned] = ACTIONS(675), + [anon_sym_long] = ACTIONS(675), + [anon_sym_short] = ACTIONS(675), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(681), + [anon_sym_struct] = ACTIONS(684), + [anon_sym_union] = ACTIONS(687), + [anon_sym_if] = ACTIONS(690), + [anon_sym_else] = ACTIONS(637), + [anon_sym_switch] = ACTIONS(693), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(699), + [anon_sym_for] = ACTIONS(702), + [anon_sym_return] = ACTIONS(705), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym__Generic] = ACTIONS(723), + [anon_sym_asm] = ACTIONS(726), + [anon_sym___asm__] = ACTIONS(726), + [sym_number_literal] = ACTIONS(729), + [anon_sym_L_SQUOTE] = ACTIONS(732), + [anon_sym_u_SQUOTE] = ACTIONS(732), + [anon_sym_U_SQUOTE] = ACTIONS(732), + [anon_sym_u8_SQUOTE] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_L_DQUOTE] = ACTIONS(735), + [anon_sym_u_DQUOTE] = ACTIONS(735), + [anon_sym_U_DQUOTE] = ACTIONS(735), + [anon_sym_u8_DQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + }, + [48] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(741), + [aux_sym_preproc_include_token1] = ACTIONS(637), + [aux_sym_preproc_def_token1] = ACTIONS(637), + [aux_sym_preproc_if_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(637), + [sym_preproc_directive] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_typedef] = ACTIONS(747), + [anon_sym_extern] = ACTIONS(657), + [anon_sym___attribute__] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(663), + [anon_sym___declspec] = ACTIONS(666), + [anon_sym___cdecl] = ACTIONS(637), + [anon_sym___clrcall] = ACTIONS(637), + [anon_sym___stdcall] = ACTIONS(637), + [anon_sym___fastcall] = ACTIONS(637), + [anon_sym___thiscall] = ACTIONS(637), + [anon_sym___vectorcall] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_static] = ACTIONS(657), + [anon_sym_auto] = ACTIONS(657), + [anon_sym_register] = ACTIONS(657), + [anon_sym_inline] = ACTIONS(657), + [anon_sym_const] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_restrict] = ACTIONS(672), + [anon_sym___restrict__] = ACTIONS(672), + [anon_sym__Atomic] = ACTIONS(672), + [anon_sym__Noreturn] = ACTIONS(672), + [anon_sym_signed] = ACTIONS(675), + [anon_sym_unsigned] = ACTIONS(675), + [anon_sym_long] = ACTIONS(675), + [anon_sym_short] = ACTIONS(675), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(681), + [anon_sym_struct] = ACTIONS(684), + [anon_sym_union] = ACTIONS(687), + [anon_sym_if] = ACTIONS(755), + [anon_sym_else] = ACTIONS(637), + [anon_sym_switch] = ACTIONS(758), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [anon_sym_while] = ACTIONS(761), + [anon_sym_do] = ACTIONS(764), + [anon_sym_for] = ACTIONS(767), + [anon_sym_return] = ACTIONS(770), + [anon_sym_break] = ACTIONS(773), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_goto] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym__Generic] = ACTIONS(723), + [anon_sym_asm] = ACTIONS(726), + [anon_sym___asm__] = ACTIONS(726), + [sym_number_literal] = ACTIONS(729), + [anon_sym_L_SQUOTE] = ACTIONS(732), + [anon_sym_u_SQUOTE] = ACTIONS(732), + [anon_sym_U_SQUOTE] = ACTIONS(732), + [anon_sym_u8_SQUOTE] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_L_DQUOTE] = ACTIONS(735), + [anon_sym_u_DQUOTE] = ACTIONS(735), + [anon_sym_U_DQUOTE] = ACTIONS(735), + [anon_sym_u8_DQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(782), + [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), @@ -19819,19 +20060,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(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(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(329), + [anon_sym_RBRACE] = ACTIONS(784), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -19850,228 +20092,234 @@ 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(333), + [anon_sym_else] = ACTIONS(626), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { - [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(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), [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(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), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(753), + [sym_identifier] = ACTIONS(786), + [aux_sym_preproc_include_token1] = ACTIONS(637), + [aux_sym_preproc_def_token1] = ACTIONS(637), + [aux_sym_preproc_if_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(637), + [sym_preproc_directive] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_typedef] = ACTIONS(792), + [anon_sym_extern] = ACTIONS(657), + [anon_sym___attribute__] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(663), + [anon_sym___declspec] = ACTIONS(666), + [anon_sym___cdecl] = ACTIONS(637), + [anon_sym___clrcall] = ACTIONS(637), + [anon_sym___stdcall] = ACTIONS(637), + [anon_sym___fastcall] = ACTIONS(637), + [anon_sym___thiscall] = ACTIONS(637), + [anon_sym___vectorcall] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_static] = ACTIONS(657), + [anon_sym_auto] = ACTIONS(657), + [anon_sym_register] = ACTIONS(657), + [anon_sym_inline] = ACTIONS(657), + [anon_sym_const] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_restrict] = ACTIONS(672), + [anon_sym___restrict__] = ACTIONS(672), + [anon_sym__Atomic] = ACTIONS(672), + [anon_sym__Noreturn] = ACTIONS(672), + [anon_sym_signed] = ACTIONS(675), + [anon_sym_unsigned] = ACTIONS(675), + [anon_sym_long] = ACTIONS(675), + [anon_sym_short] = ACTIONS(675), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(681), + [anon_sym_struct] = ACTIONS(684), + [anon_sym_union] = ACTIONS(687), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(637), + [anon_sym_switch] = ACTIONS(801), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [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(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym__Generic] = ACTIONS(723), + [anon_sym_asm] = ACTIONS(726), + [anon_sym___asm__] = ACTIONS(726), + [sym_number_literal] = ACTIONS(729), + [anon_sym_L_SQUOTE] = ACTIONS(732), + [anon_sym_u_SQUOTE] = ACTIONS(732), + [anon_sym_U_SQUOTE] = ACTIONS(732), + [anon_sym_u8_SQUOTE] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_L_DQUOTE] = ACTIONS(735), + [anon_sym_u_DQUOTE] = ACTIONS(735), + [anon_sym_U_DQUOTE] = ACTIONS(735), + [anon_sym_u8_DQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), [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), + [51] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1037), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(825), + [aux_sym_preproc_include_token1] = ACTIONS(632), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(632), + [aux_sym_preproc_if_token2] = ACTIONS(632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20079,19 +20327,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(371), + [anon_sym_typedef] = ACTIONS(373), [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(632), + [anon_sym___clrcall] = ACTIONS(632), + [anon_sym___stdcall] = ACTIONS(632), + [anon_sym___fastcall] = ACTIONS(632), + [anon_sym___thiscall] = ACTIONS(632), + [anon_sym___vectorcall] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20110,98 +20358,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(379), + [anon_sym_else] = ACTIONS(632), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [52] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(630), + [aux_sym_preproc_if_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(630), + [sym_preproc_directive] = ACTIONS(630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20209,19 +20459,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(366), - [anon_sym_typedef] = ACTIONS(368), + [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(372), + [anon_sym___cdecl] = ACTIONS(630), + [anon_sym___clrcall] = ACTIONS(630), + [anon_sym___stdcall] = ACTIONS(630), + [anon_sym___fastcall] = ACTIONS(630), + [anon_sym___thiscall] = ACTIONS(630), + [anon_sym___vectorcall] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(827), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20240,97 +20491,233 @@ 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(333), + [anon_sym_else] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1037), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(829), + [aux_sym_preproc_include_token1] = ACTIONS(637), + [aux_sym_preproc_def_token1] = ACTIONS(637), + [aux_sym_preproc_if_token1] = ACTIONS(637), + [aux_sym_preproc_if_token2] = ACTIONS(637), + [aux_sym_preproc_ifdef_token1] = ACTIONS(637), + [aux_sym_preproc_ifdef_token2] = ACTIONS(637), + [sym_preproc_directive] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_typedef] = ACTIONS(835), + [anon_sym_extern] = ACTIONS(657), + [anon_sym___attribute__] = ACTIONS(660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(663), + [anon_sym___declspec] = ACTIONS(666), + [anon_sym___cdecl] = ACTIONS(637), + [anon_sym___clrcall] = ACTIONS(637), + [anon_sym___stdcall] = ACTIONS(637), + [anon_sym___fastcall] = ACTIONS(637), + [anon_sym___thiscall] = ACTIONS(637), + [anon_sym___vectorcall] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_static] = ACTIONS(657), + [anon_sym_auto] = ACTIONS(657), + [anon_sym_register] = ACTIONS(657), + [anon_sym_inline] = ACTIONS(657), + [anon_sym_const] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_restrict] = ACTIONS(672), + [anon_sym___restrict__] = ACTIONS(672), + [anon_sym__Atomic] = ACTIONS(672), + [anon_sym__Noreturn] = ACTIONS(672), + [anon_sym_signed] = ACTIONS(675), + [anon_sym_unsigned] = ACTIONS(675), + [anon_sym_long] = ACTIONS(675), + [anon_sym_short] = ACTIONS(675), + [sym_primitive_type] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(681), + [anon_sym_struct] = ACTIONS(684), + [anon_sym_union] = ACTIONS(687), + [anon_sym_if] = ACTIONS(841), + [anon_sym_else] = ACTIONS(637), + [anon_sym_switch] = ACTIONS(844), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [anon_sym_while] = ACTIONS(847), + [anon_sym_do] = ACTIONS(850), + [anon_sym_for] = ACTIONS(853), + [anon_sym_return] = ACTIONS(856), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_goto] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_sizeof] = ACTIONS(720), + [anon_sym__Generic] = ACTIONS(723), + [anon_sym_asm] = ACTIONS(726), + [anon_sym___asm__] = ACTIONS(726), + [sym_number_literal] = ACTIONS(729), + [anon_sym_L_SQUOTE] = ACTIONS(732), + [anon_sym_u_SQUOTE] = ACTIONS(732), + [anon_sym_U_SQUOTE] = ACTIONS(732), + [anon_sym_u8_SQUOTE] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_L_DQUOTE] = ACTIONS(735), + [anon_sym_u_DQUOTE] = ACTIONS(735), + [anon_sym_U_DQUOTE] = ACTIONS(735), + [anon_sym_u8_DQUOTE] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(735), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_null] = ACTIONS(738), [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), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(782), + [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), @@ -20338,20 +20725,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(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(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(868), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20370,98 +20757,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(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(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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1037), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(825), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(630), + [aux_sym_preproc_if_token1] = ACTIONS(630), + [aux_sym_preproc_if_token2] = ACTIONS(630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(630), + [sym_preproc_directive] = ACTIONS(630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20469,19 +20859,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(371), + [anon_sym_typedef] = ACTIONS(373), [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(41), + [anon_sym___cdecl] = ACTIONS(630), + [anon_sym___clrcall] = ACTIONS(630), + [anon_sym___stdcall] = ACTIONS(630), + [anon_sym___fastcall] = ACTIONS(630), + [anon_sym___thiscall] = ACTIONS(630), + [anon_sym___vectorcall] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20500,54 +20890,56 @@ 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(731), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [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(379), + [anon_sym_else] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1037), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(665), [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(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(51), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), @@ -20560,37 +20952,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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), [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_identifier] = ACTIONS(825), + [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), @@ -20598,20 +20992,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(371), + [anon_sym_typedef] = ACTIONS(373), [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(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(377), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -20630,227 +21023,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(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(379), + [anon_sym_else] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(62), + [ts_builtin_sym_end] = ACTIONS(784), + [sym_identifier] = ACTIONS(870), [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_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), - [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20858,20 +21125,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(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(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), [anon_sym_register] = ACTIONS(43), @@ -20890,228 +21156,367 @@ 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(57), + [anon_sym_else] = ACTIONS(626), + [anon_sym_switch] = ACTIONS(59), + [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), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [58] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1037), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(825), [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(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(371), + [anon_sym_typedef] = ACTIONS(373), + [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(377), + [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(379), [anon_sym_else] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(381), [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(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1030), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(385), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(782), + [aux_sym_preproc_include_token1] = ACTIONS(632), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(632), + [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(632), + [anon_sym___clrcall] = ACTIONS(632), + [anon_sym___stdcall] = ACTIONS(632), + [anon_sym___fastcall] = ACTIONS(632), + [anon_sym___thiscall] = ACTIONS(632), + [anon_sym___vectorcall] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(872), + [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(632), + [anon_sym_switch] = ACTIONS(335), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), [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(665), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(870), + [aux_sym_preproc_include_token1] = ACTIONS(632), + [aux_sym_preproc_def_token1] = ACTIONS(632), + [aux_sym_preproc_if_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(632), + [sym_preproc_directive] = ACTIONS(632), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21125,12 +21530,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(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___cdecl] = ACTIONS(632), + [anon_sym___clrcall] = ACTIONS(632), + [anon_sym___stdcall] = ACTIONS(632), + [anon_sym___fastcall] = ACTIONS(632), + [anon_sym___thiscall] = ACTIONS(632), + [anon_sym___vectorcall] = ACTIONS(632), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), @@ -21151,10 +21556,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(621), + [anon_sym_else] = ACTIONS(632), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(621), - [anon_sym_default] = ACTIONS(621), + [anon_sym_case] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -21166,38 +21571,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), [sym_attribute_declaration] = STATE(385), - [sym_ms_declspec_modifier] = STATE(655), + [sym_ms_declspec_modifier] = STATE(665), [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_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -21210,38 +21617,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), [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), + [ts_builtin_sym_end] = ACTIONS(868), + [sym_identifier] = ACTIONS(870), + [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), @@ -21255,12 +21663,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(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___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), @@ -21281,10 +21689,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(727), + [anon_sym_else] = ACTIONS(628), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(727), - [anon_sym_default] = ACTIONS(727), + [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), @@ -21296,81 +21704,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), [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), + [sym_ms_declspec_modifier] = STATE(665), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(827), + [sym_identifier] = ACTIONS(870), + [aux_sym_preproc_include_token1] = ACTIONS(630), + [aux_sym_preproc_def_token1] = ACTIONS(630), + [aux_sym_preproc_if_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(630), + [sym_preproc_directive] = ACTIONS(630), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21378,20 +21790,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(630), + [anon_sym___clrcall] = ACTIONS(630), + [anon_sym___stdcall] = ACTIONS(630), + [anon_sym___fastcall] = ACTIONS(630), + [anon_sym___thiscall] = ACTIONS(630), + [anon_sym___vectorcall] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_static] = ACTIONS(43), [anon_sym_auto] = ACTIONS(43), [anon_sym_register] = ACTIONS(43), @@ -21410,75 +21821,78 @@ 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(630), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(665), + [sym_ms_declspec_modifier] = STATE(665), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(770), + [sym_comma_expression] = STATE(1520), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21486,10 +21900,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), @@ -21513,59 +21927,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(460), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(665), + [sym_ms_declspec_modifier] = STATE(665), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(768), + [sym_comma_expression] = STATE(1538), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21573,10 +21990,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), @@ -21600,59 +22017,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(462), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(665), + [sym_ms_declspec_modifier] = STATE(665), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(783), + [sym_comma_expression] = STATE(1437), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21660,10 +22080,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), @@ -21687,59 +22107,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(440), + [sym__declaration_modifiers] = STATE(665), + [sym__declaration_specifiers] = STATE(1031), + [sym_attribute_specifier] = STATE(665), + [sym_attribute_declaration] = STATE(665), + [sym_ms_declspec_modifier] = STATE(665), + [sym_storage_class_specifier] = STATE(665), + [sym_type_qualifier] = STATE(665), + [sym__type_specifier] = STATE(710), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(769), + [sym_comma_expression] = STATE(1530), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym__declaration_specifiers_repeat1] = STATE(665), + [aux_sym_sized_type_specifier_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(874), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21747,10 +22170,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), @@ -21774,268 +22197,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym__expression] = STATE(617), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(610), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(610), + [sym_call_expression] = STATE(610), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(610), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(610), + [sym_initializer_list] = STATE(624), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [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_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__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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), - [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), - [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] = { [sym_identifier] = ACTIONS(906), [aux_sym_preproc_include_token1] = ACTIONS(906), [aux_sym_preproc_def_token1] = ACTIONS(906), @@ -22100,6 +22366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(908), [anon_sym_sizeof] = ACTIONS(906), [anon_sym__Generic] = ACTIONS(906), + [anon_sym_asm] = ACTIONS(906), + [anon_sym___asm__] = ACTIONS(906), [sym_number_literal] = ACTIONS(908), [anon_sym_L_SQUOTE] = ACTIONS(908), [anon_sym_u_SQUOTE] = ACTIONS(908), @@ -22116,7 +22384,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), @@ -22181,6 +22449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(912), [anon_sym_sizeof] = ACTIONS(910), [anon_sym__Generic] = ACTIONS(910), + [anon_sym_asm] = ACTIONS(910), + [anon_sym___asm__] = ACTIONS(910), [sym_number_literal] = ACTIONS(912), [anon_sym_L_SQUOTE] = ACTIONS(912), [anon_sym_u_SQUOTE] = ACTIONS(912), @@ -22197,7 +22467,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), @@ -22262,6 +22532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(916), [anon_sym_sizeof] = ACTIONS(914), [anon_sym__Generic] = ACTIONS(914), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = ACTIONS(914), [sym_number_literal] = ACTIONS(916), [anon_sym_L_SQUOTE] = ACTIONS(916), [anon_sym_u_SQUOTE] = ACTIONS(916), @@ -22278,7 +22550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [sym_comment] = ACTIONS(3), }, - [73] = { + [71] = { [sym_identifier] = ACTIONS(918), [aux_sym_preproc_include_token1] = ACTIONS(918), [aux_sym_preproc_def_token1] = ACTIONS(918), @@ -22328,7 +22600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(918), [anon_sym_union] = ACTIONS(918), [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(922), [anon_sym_switch] = ACTIONS(918), [anon_sym_case] = ACTIONS(918), [anon_sym_default] = ACTIONS(918), @@ -22343,6 +22615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(920), [anon_sym_sizeof] = ACTIONS(918), [anon_sym__Generic] = ACTIONS(918), + [anon_sym_asm] = ACTIONS(918), + [anon_sym___asm__] = ACTIONS(918), [sym_number_literal] = ACTIONS(920), [anon_sym_L_SQUOTE] = ACTIONS(920), [anon_sym_u_SQUOTE] = ACTIONS(920), @@ -22359,1708 +22633,1750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(918), [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__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = 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(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__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = 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__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = 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__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = 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__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = 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__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = 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(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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(976), + [anon_sym_asm] = ACTIONS(976), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = 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), }, [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(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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), }, [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__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = 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__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = 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__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = 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__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = 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), @@ -24125,6 +24441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_sizeof] = ACTIONS(1004), [anon_sym__Generic] = ACTIONS(1004), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = ACTIONS(1004), [sym_number_literal] = ACTIONS(1006), [anon_sym_L_SQUOTE] = ACTIONS(1006), [anon_sym_u_SQUOTE] = ACTIONS(1006), @@ -24141,7 +24459,90 @@ 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(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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), + }, + [95] = { [sym_identifier] = ACTIONS(1008), [aux_sym_preproc_include_token1] = ACTIONS(1008), [aux_sym_preproc_def_token1] = ACTIONS(1008), @@ -24206,6 +24607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_sizeof] = ACTIONS(1008), [anon_sym__Generic] = ACTIONS(1008), + [anon_sym_asm] = ACTIONS(1008), + [anon_sym___asm__] = ACTIONS(1008), [sym_number_literal] = ACTIONS(1010), [anon_sym_L_SQUOTE] = ACTIONS(1010), [anon_sym_u_SQUOTE] = ACTIONS(1010), @@ -24222,7 +24625,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), @@ -24287,6 +24690,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1014), [anon_sym_sizeof] = ACTIONS(1012), [anon_sym__Generic] = ACTIONS(1012), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = ACTIONS(1012), [sym_number_literal] = ACTIONS(1014), [anon_sym_L_SQUOTE] = ACTIONS(1014), [anon_sym_u_SQUOTE] = ACTIONS(1014), @@ -24303,7 +24708,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), @@ -24368,6 +24773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1018), [anon_sym_sizeof] = ACTIONS(1016), [anon_sym__Generic] = ACTIONS(1016), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = ACTIONS(1016), [sym_number_literal] = ACTIONS(1018), [anon_sym_L_SQUOTE] = ACTIONS(1018), [anon_sym_u_SQUOTE] = ACTIONS(1018), @@ -24384,7 +24791,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), @@ -24449,6 +24856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1022), [anon_sym_sizeof] = ACTIONS(1020), [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), [sym_number_literal] = ACTIONS(1022), [anon_sym_L_SQUOTE] = ACTIONS(1022), [anon_sym_u_SQUOTE] = ACTIONS(1022), @@ -24465,7 +24874,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), @@ -24530,6 +24939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1026), [anon_sym_sizeof] = ACTIONS(1024), [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = ACTIONS(1024), [sym_number_literal] = ACTIONS(1026), [anon_sym_L_SQUOTE] = ACTIONS(1026), [anon_sym_u_SQUOTE] = ACTIONS(1026), @@ -24546,7 +24957,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), @@ -24611,6 +25022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1030), [anon_sym_sizeof] = ACTIONS(1028), [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), [sym_number_literal] = ACTIONS(1030), [anon_sym_L_SQUOTE] = ACTIONS(1030), [anon_sym_u_SQUOTE] = ACTIONS(1030), @@ -24627,88 +25040,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), @@ -24773,6 +25105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1034), [anon_sym_sizeof] = ACTIONS(1032), [anon_sym__Generic] = ACTIONS(1032), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = ACTIONS(1032), [sym_number_literal] = ACTIONS(1034), [anon_sym_L_SQUOTE] = ACTIONS(1034), [anon_sym_u_SQUOTE] = ACTIONS(1034), @@ -24789,7 +25123,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 +25173,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), @@ -24853,6 +25188,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1038), [anon_sym_sizeof] = ACTIONS(1036), [anon_sym__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = ACTIONS(1036), [sym_number_literal] = ACTIONS(1038), [anon_sym_L_SQUOTE] = ACTIONS(1038), [anon_sym_u_SQUOTE] = ACTIONS(1038), @@ -24869,7 +25206,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 +25256,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), @@ -24933,6 +25271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1042), [anon_sym_sizeof] = ACTIONS(1040), [anon_sym__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = ACTIONS(1040), [sym_number_literal] = ACTIONS(1042), [anon_sym_L_SQUOTE] = ACTIONS(1042), [anon_sym_u_SQUOTE] = ACTIONS(1042), @@ -24949,7 +25289,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), @@ -25013,6 +25353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1046), [anon_sym_sizeof] = ACTIONS(1044), [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1044), + [anon_sym___asm__] = ACTIONS(1044), [sym_number_literal] = ACTIONS(1046), [anon_sym_L_SQUOTE] = ACTIONS(1046), [anon_sym_u_SQUOTE] = ACTIONS(1046), @@ -25029,7 +25371,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), @@ -25093,6 +25435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1050), [anon_sym_sizeof] = ACTIONS(1048), [anon_sym__Generic] = ACTIONS(1048), + [anon_sym_asm] = ACTIONS(1048), + [anon_sym___asm__] = ACTIONS(1048), [sym_number_literal] = ACTIONS(1050), [anon_sym_L_SQUOTE] = ACTIONS(1050), [anon_sym_u_SQUOTE] = ACTIONS(1050), @@ -25109,7 +25453,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), @@ -25173,6 +25517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_sizeof] = ACTIONS(1052), [anon_sym__Generic] = ACTIONS(1052), + [anon_sym_asm] = ACTIONS(1052), + [anon_sym___asm__] = ACTIONS(1052), [sym_number_literal] = ACTIONS(1054), [anon_sym_L_SQUOTE] = ACTIONS(1054), [anon_sym_u_SQUOTE] = ACTIONS(1054), @@ -25189,7 +25535,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), @@ -25253,6 +25599,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1058), [anon_sym_sizeof] = ACTIONS(1056), [anon_sym__Generic] = ACTIONS(1056), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = ACTIONS(1056), [sym_number_literal] = ACTIONS(1058), [anon_sym_L_SQUOTE] = ACTIONS(1058), [anon_sym_u_SQUOTE] = ACTIONS(1058), @@ -25269,7 +25617,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), @@ -25333,6 +25681,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1062), [anon_sym_sizeof] = ACTIONS(1060), [anon_sym__Generic] = ACTIONS(1060), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = ACTIONS(1060), [sym_number_literal] = ACTIONS(1062), [anon_sym_L_SQUOTE] = ACTIONS(1062), [anon_sym_u_SQUOTE] = ACTIONS(1062), @@ -25349,7 +25699,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), @@ -25413,6 +25763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1066), [anon_sym_sizeof] = ACTIONS(1064), [anon_sym__Generic] = ACTIONS(1064), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = ACTIONS(1064), [sym_number_literal] = ACTIONS(1066), [anon_sym_L_SQUOTE] = ACTIONS(1066), [anon_sym_u_SQUOTE] = ACTIONS(1066), @@ -25429,7 +25781,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), @@ -25493,6 +25845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1070), [anon_sym_sizeof] = ACTIONS(1068), [anon_sym__Generic] = ACTIONS(1068), + [anon_sym_asm] = ACTIONS(1068), + [anon_sym___asm__] = ACTIONS(1068), [sym_number_literal] = ACTIONS(1070), [anon_sym_L_SQUOTE] = ACTIONS(1070), [anon_sym_u_SQUOTE] = ACTIONS(1070), @@ -25509,7 +25863,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), @@ -25573,6 +25927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1074), [anon_sym_sizeof] = ACTIONS(1072), [anon_sym__Generic] = ACTIONS(1072), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = ACTIONS(1072), [sym_number_literal] = ACTIONS(1074), [anon_sym_L_SQUOTE] = ACTIONS(1074), [anon_sym_u_SQUOTE] = ACTIONS(1074), @@ -25589,7 +25945,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), @@ -25653,6 +26009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1078), [anon_sym_sizeof] = ACTIONS(1076), [anon_sym__Generic] = ACTIONS(1076), + [anon_sym_asm] = ACTIONS(1076), + [anon_sym___asm__] = ACTIONS(1076), [sym_number_literal] = ACTIONS(1078), [anon_sym_L_SQUOTE] = ACTIONS(1078), [anon_sym_u_SQUOTE] = ACTIONS(1078), @@ -25669,7 +26027,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), @@ -25733,6 +26091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1082), [anon_sym_sizeof] = ACTIONS(1080), [anon_sym__Generic] = ACTIONS(1080), + [anon_sym_asm] = ACTIONS(1080), + [anon_sym___asm__] = ACTIONS(1080), [sym_number_literal] = ACTIONS(1082), [anon_sym_L_SQUOTE] = ACTIONS(1082), [anon_sym_u_SQUOTE] = ACTIONS(1082), @@ -25749,7 +26109,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), @@ -25813,6 +26173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), + [anon_sym_asm] = ACTIONS(1084), + [anon_sym___asm__] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), [anon_sym_u_SQUOTE] = ACTIONS(1086), @@ -25829,7 +26191,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), @@ -25893,6 +26255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1090), [anon_sym_sizeof] = ACTIONS(1088), [anon_sym__Generic] = ACTIONS(1088), + [anon_sym_asm] = ACTIONS(1088), + [anon_sym___asm__] = ACTIONS(1088), [sym_number_literal] = ACTIONS(1090), [anon_sym_L_SQUOTE] = ACTIONS(1090), [anon_sym_u_SQUOTE] = ACTIONS(1090), @@ -25909,7 +26273,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), @@ -25973,6 +26337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1094), [anon_sym_sizeof] = ACTIONS(1092), [anon_sym__Generic] = ACTIONS(1092), + [anon_sym_asm] = ACTIONS(1092), + [anon_sym___asm__] = ACTIONS(1092), [sym_number_literal] = ACTIONS(1094), [anon_sym_L_SQUOTE] = ACTIONS(1094), [anon_sym_u_SQUOTE] = ACTIONS(1094), @@ -25989,7 +26355,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), @@ -26053,6 +26419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1098), [anon_sym_sizeof] = ACTIONS(1096), [anon_sym__Generic] = ACTIONS(1096), + [anon_sym_asm] = ACTIONS(1096), + [anon_sym___asm__] = ACTIONS(1096), [sym_number_literal] = ACTIONS(1098), [anon_sym_L_SQUOTE] = ACTIONS(1098), [anon_sym_u_SQUOTE] = ACTIONS(1098), @@ -26069,7 +26437,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), @@ -26133,6 +26501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1102), [anon_sym_sizeof] = ACTIONS(1100), [anon_sym__Generic] = ACTIONS(1100), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = ACTIONS(1100), [sym_number_literal] = ACTIONS(1102), [anon_sym_L_SQUOTE] = ACTIONS(1102), [anon_sym_u_SQUOTE] = ACTIONS(1102), @@ -26149,7 +26519,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), @@ -26213,6 +26583,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1106), [anon_sym_sizeof] = ACTIONS(1104), [anon_sym__Generic] = ACTIONS(1104), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = ACTIONS(1104), [sym_number_literal] = ACTIONS(1106), [anon_sym_L_SQUOTE] = ACTIONS(1106), [anon_sym_u_SQUOTE] = ACTIONS(1106), @@ -26229,7 +26601,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), @@ -26293,6 +26665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1110), [anon_sym_sizeof] = ACTIONS(1108), [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), [sym_number_literal] = ACTIONS(1110), [anon_sym_L_SQUOTE] = ACTIONS(1110), [anon_sym_u_SQUOTE] = ACTIONS(1110), @@ -26309,7 +26683,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), @@ -26373,6 +26747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1114), [anon_sym_sizeof] = ACTIONS(1112), [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), [sym_number_literal] = ACTIONS(1114), [anon_sym_L_SQUOTE] = ACTIONS(1114), [anon_sym_u_SQUOTE] = ACTIONS(1114), @@ -26389,7 +26765,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), @@ -26453,6 +26829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1118), [anon_sym_sizeof] = ACTIONS(1116), [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), [sym_number_literal] = ACTIONS(1118), [anon_sym_L_SQUOTE] = ACTIONS(1118), [anon_sym_u_SQUOTE] = ACTIONS(1118), @@ -26469,4273 +26847,3736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [sym_comment] = ACTIONS(3), }, + [123] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [aux_sym_preproc_else_token1] = ACTIONS(1120), + [aux_sym_preproc_elif_token1] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [aux_sym_preproc_else_token1] = ACTIONS(1124), + [aux_sym_preproc_elif_token1] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [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__expression] = STATE(659), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(610), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(610), + [sym_call_expression] = STATE(610), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(610), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(610), + [sym_initializer_list] = STATE(624), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_identifier] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_TILDE] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1134), + [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(1134), + [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(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1136), + [anon_sym_sizeof] = ACTIONS(1138), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = 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), }, [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_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__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = 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), }, [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_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(138), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_case_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(140), + [sym_attributed_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_case_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(143), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(145), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_case_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [137] = { - [sym_identifier] = ACTIONS(1028), - [aux_sym_preproc_include_token1] = ACTIONS(1028), - [aux_sym_preproc_def_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token1] = ACTIONS(1028), - [aux_sym_preproc_if_token2] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), - [sym_preproc_directive] = ACTIONS(1028), - [anon_sym_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), + [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), + [anon_sym_asm] = ACTIONS(906), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(132), + [sym_attributed_statement] = STATE(132), + [sym_labeled_statement] = STATE(132), + [sym_expression_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_switch_statement] = STATE(132), + [sym_case_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_do_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_return_statement] = STATE(132), + [sym_break_statement] = STATE(132), + [sym_continue_statement] = STATE(132), + [sym_goto_statement] = STATE(132), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = ACTIONS(972), + [sym_number_literal] = ACTIONS(974), + [anon_sym_L_SQUOTE] = ACTIONS(974), + [anon_sym_u_SQUOTE] = ACTIONS(974), + [anon_sym_U_SQUOTE] = ACTIONS(974), + [anon_sym_u8_SQUOTE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_L_DQUOTE] = ACTIONS(974), + [anon_sym_u_DQUOTE] = ACTIONS(974), + [anon_sym_U_DQUOTE] = ACTIONS(974), + [anon_sym_u8_DQUOTE] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym_true] = ACTIONS(972), + [sym_false] = ACTIONS(972), + [sym_null] = ACTIONS(972), [sym_comment] = ACTIONS(3), }, [141] = { - [sym_identifier] = ACTIONS(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), + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = ACTIONS(984), + [sym_number_literal] = ACTIONS(986), + [anon_sym_L_SQUOTE] = ACTIONS(986), + [anon_sym_u_SQUOTE] = ACTIONS(986), + [anon_sym_U_SQUOTE] = ACTIONS(986), + [anon_sym_u8_SQUOTE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_L_DQUOTE] = ACTIONS(986), + [anon_sym_u_DQUOTE] = ACTIONS(986), + [anon_sym_U_DQUOTE] = ACTIONS(986), + [anon_sym_u8_DQUOTE] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_null] = ACTIONS(984), [sym_comment] = ACTIONS(3), }, [144] = { - [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), + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(257), + [sym_attributed_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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__Generic] = ACTIONS(1008), + [anon_sym_asm] = ACTIONS(1008), + [anon_sym___asm__] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_identifier] = ACTIONS(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_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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = 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), }, [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), + [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), + [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), + [anon_sym_asm] = ACTIONS(910), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(129), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { - [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__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_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(157), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(157), + [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), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), [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), + [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__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), }, [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_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__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = 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), }, [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_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(212), + [sym_attributed_statement] = STATE(212), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_case_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_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__Generic] = ACTIONS(976), + [anon_sym_asm] = ACTIONS(976), + [anon_sym___asm__] = 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), }, [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), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [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__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), - }, - [179] = { [sym_identifier] = ACTIONS(1024), [aux_sym_preproc_include_token1] = ACTIONS(1024), [aux_sym_preproc_def_token1] = ACTIONS(1024), @@ -30798,6 +30639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1026), [anon_sym_sizeof] = ACTIONS(1024), [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = ACTIONS(1024), [sym_number_literal] = ACTIONS(1026), [anon_sym_L_SQUOTE] = ACTIONS(1026), [anon_sym_u_SQUOTE] = ACTIONS(1026), @@ -30814,86 +30657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym_comment] = ACTIONS(3), - }, - [181] = { + [170] = { [sym_identifier] = ACTIONS(1016), [aux_sym_preproc_include_token1] = ACTIONS(1016), [aux_sym_preproc_def_token1] = ACTIONS(1016), @@ -30956,6 +30720,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1018), [anon_sym_sizeof] = ACTIONS(1016), [anon_sym__Generic] = ACTIONS(1016), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = ACTIONS(1016), [sym_number_literal] = ACTIONS(1018), [anon_sym_L_SQUOTE] = ACTIONS(1018), [anon_sym_u_SQUOTE] = ACTIONS(1018), @@ -30972,723 +30738,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [171] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [172] = { [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), @@ -31712,6 +30847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -31746,6 +30882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(912), [anon_sym_sizeof] = ACTIONS(910), [anon_sym__Generic] = ACTIONS(910), + [anon_sym_asm] = ACTIONS(910), + [anon_sym___asm__] = ACTIONS(910), [sym_number_literal] = ACTIONS(912), [anon_sym_L_SQUOTE] = ACTIONS(912), [anon_sym_u_SQUOTE] = ACTIONS(912), @@ -31762,244 +30900,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1016), - [aux_sym_preproc_include_token1] = ACTIONS(1016), - [aux_sym_preproc_def_token1] = ACTIONS(1016), - [aux_sym_preproc_if_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), - [sym_preproc_directive] = ACTIONS(1016), - [anon_sym_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), - }, - [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), + [173] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), }, - [195] = { + [174] = { [sym_identifier] = ACTIONS(914), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), @@ -32062,6 +31044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(916), [anon_sym_sizeof] = ACTIONS(914), [anon_sym__Generic] = ACTIONS(914), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = ACTIONS(914), [sym_number_literal] = ACTIONS(916), [anon_sym_L_SQUOTE] = ACTIONS(916), [anon_sym_u_SQUOTE] = ACTIONS(916), @@ -32078,165 +31062,1142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(914), [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), + [175] = { + [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(1229), + [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), + [anon_sym_asm] = ACTIONS(918), + [anon_sym___asm__] = 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), }, - [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), + [176] = { + [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__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = 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), }, - [198] = { + [177] = { + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [178] = { + [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__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = 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), + }, + [179] = { + [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__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = 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), + }, + [180] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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_attribute_declaration] = STATE(214), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [182] = { + [sym_attribute_declaration] = STATE(182), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(1233), + [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(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(1535), + [sym_attributed_statement] = STATE(1535), + [sym_labeled_statement] = STATE(1535), + [sym_expression_statement] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_switch_statement] = STATE(1535), + [sym_case_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_do_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_return_statement] = STATE(1535), + [sym_break_statement] = STATE(1535), + [sym_continue_statement] = STATE(1535), + [sym_goto_statement] = STATE(1535), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [184] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [185] = { + [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__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = 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), + }, + [186] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), + }, + [187] = { + [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), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = 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), + }, + [188] = { + [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__Generic] = ACTIONS(1032), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = 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), + }, + [189] = { + [ts_builtin_sym_end] = ACTIONS(1022), [sym_identifier] = ACTIONS(1020), [aux_sym_preproc_include_token1] = ACTIONS(1020), [aux_sym_preproc_def_token1] = ACTIONS(1020), @@ -32264,7 +32225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32299,6 +32259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1022), [anon_sym_sizeof] = ACTIONS(1020), [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), [sym_number_literal] = ACTIONS(1022), [anon_sym_L_SQUOTE] = ACTIONS(1022), [anon_sym_u_SQUOTE] = ACTIONS(1022), @@ -32315,249 +32277,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [190] = { + [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__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = 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), }, - [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), + [191] = { + [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__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = 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), }, - [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), + [192] = { + [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), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = 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), }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(1022), + [193] = { + [sym_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(71), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = 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), + }, + [195] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(166), + [sym_attributed_statement] = STATE(166), + [sym_labeled_statement] = STATE(166), + [sym_expression_statement] = STATE(166), + [sym_if_statement] = STATE(166), + [sym_switch_statement] = STATE(166), + [sym_case_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_do_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_return_statement] = STATE(166), + [sym_break_statement] = STATE(166), + [sym_continue_statement] = STATE(166), + [sym_goto_statement] = STATE(166), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(97), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_case_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [197] = { + [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__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = 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), + }, + [198] = { + [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), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = 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), + }, + [199] = { [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), @@ -32615,6 +33069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1022), [anon_sym_sizeof] = ACTIONS(1020), [anon_sym__Generic] = ACTIONS(1020), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = ACTIONS(1020), [sym_number_literal] = ACTIONS(1022), [anon_sym_L_SQUOTE] = ACTIONS(1022), [anon_sym_u_SQUOTE] = ACTIONS(1022), @@ -32631,327 +33087,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1020), [sym_comment] = ACTIONS(3), }, - [203] = { - [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__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), - }, - [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] = { + [200] = { [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(1028), [aux_sym_preproc_def_token1] = ACTIONS(1028), [aux_sym_preproc_if_token1] = ACTIONS(1028), + [aux_sym_preproc_if_token2] = ACTIONS(1028), [aux_sym_preproc_ifdef_token1] = ACTIONS(1028), [aux_sym_preproc_ifdef_token2] = ACTIONS(1028), [sym_preproc_directive] = ACTIONS(1028), @@ -32975,7 +33116,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33010,6 +33150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1030), [anon_sym_sizeof] = ACTIONS(1028), [anon_sym__Generic] = ACTIONS(1028), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = ACTIONS(1028), [sym_number_literal] = ACTIONS(1030), [anon_sym_L_SQUOTE] = ACTIONS(1030), [anon_sym_u_SQUOTE] = ACTIONS(1030), @@ -33026,1118 +33168,822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1028), [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), + [201] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), - [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), - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [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__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), + [202] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [203] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), }, - [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), + [204] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), }, - [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), + [205] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [206] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [207] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [208] = { + [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__Generic] = ACTIONS(956), + [anon_sym_asm] = ACTIONS(956), + [anon_sym___asm__] = 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), }, - [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), + [209] = { + [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), + [anon_sym_asm] = ACTIONS(1032), + [anon_sym___asm__] = 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), }, - [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), + [210] = { + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [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(323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [211] = { [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), @@ -34195,6 +34041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(912), [anon_sym_sizeof] = ACTIONS(910), [anon_sym__Generic] = ACTIONS(910), + [anon_sym_asm] = ACTIONS(910), + [anon_sym___asm__] = ACTIONS(910), [sym_number_literal] = ACTIONS(912), [anon_sym_L_SQUOTE] = ACTIONS(912), [anon_sym_u_SQUOTE] = ACTIONS(912), @@ -34211,12 +34059,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(910), [sym_comment] = ACTIONS(3), }, - [223] = { + [212] = { + [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__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = 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), + }, + [213] = { + [sym_identifier] = ACTIONS(1000), + [aux_sym_preproc_include_token1] = ACTIONS(1000), + [aux_sym_preproc_def_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token1] = ACTIONS(1000), + [aux_sym_preproc_if_token2] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1000), + [sym_preproc_directive] = ACTIONS(1000), + [anon_sym_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__Generic] = ACTIONS(1000), + [anon_sym_asm] = ACTIONS(1000), + [anon_sym___asm__] = ACTIONS(1000), + [sym_number_literal] = ACTIONS(1002), + [anon_sym_L_SQUOTE] = ACTIONS(1002), + [anon_sym_u_SQUOTE] = ACTIONS(1002), + [anon_sym_U_SQUOTE] = ACTIONS(1002), + [anon_sym_u8_SQUOTE] = ACTIONS(1002), + [anon_sym_SQUOTE] = ACTIONS(1002), + [anon_sym_L_DQUOTE] = ACTIONS(1002), + [anon_sym_u_DQUOTE] = ACTIONS(1002), + [anon_sym_U_DQUOTE] = ACTIONS(1002), + [anon_sym_u8_DQUOTE] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_null] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + }, + [214] = { + [sym_attribute_declaration] = STATE(214), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(1275), + [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(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = 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), + }, + [217] = { [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), @@ -34240,6 +34492,7 @@ 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), @@ -34274,6 +34527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_sizeof] = ACTIONS(1004), [anon_sym__Generic] = ACTIONS(1004), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = ACTIONS(1004), [sym_number_literal] = ACTIONS(1006), [anon_sym_L_SQUOTE] = ACTIONS(1006), [anon_sym_u_SQUOTE] = ACTIONS(1006), @@ -34290,833 +34545,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [218] = { + [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__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = 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), }, - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [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__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), - }, - [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), - [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), - [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), - [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), - [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), + [219] = { + [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__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = 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), }, - [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), + [220] = { + [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__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = 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), }, - [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), + [221] = { + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(254), + [sym_attributed_statement] = STATE(254), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35125,7 +34834,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(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -35142,137 +34851,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), - [sym_identifier] = ACTIONS(1142), + [222] = { + [sym_attribute_declaration] = STATE(182), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35280,311 +34914,485 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [223] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), }, - [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), - [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), + [224] = { + [sym_identifier] = ACTIONS(1004), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_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), + [anon_sym_asm] = ACTIONS(1004), + [anon_sym___asm__] = 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), }, - [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), + [225] = { + [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__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = 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), }, - [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), - [sym_identifier] = ACTIONS(1142), + [226] = { + [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__Generic] = ACTIONS(948), + [anon_sym_asm] = ACTIONS(948), + [anon_sym___asm__] = 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), + }, + [227] = { + [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__Generic] = ACTIONS(928), + [anon_sym_asm] = ACTIONS(928), + [anon_sym___asm__] = 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), + }, + [228] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35592,77 +35400,161 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [229] = { + [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__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = 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), + }, + [230] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35670,77 +35562,404 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), - [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), + [231] = { + [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__Generic] = ACTIONS(996), + [anon_sym_asm] = ACTIONS(996), + [anon_sym___asm__] = 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), + }, + [232] = { + [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__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = 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), + }, + [233] = { + [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(1317), + [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), + [anon_sym_asm] = ACTIONS(918), + [anon_sym___asm__] = 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), + }, + [234] = { + [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), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = 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), + }, + [235] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35749,7 +35968,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(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -35766,59 +35985,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [236] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -35826,545 +36048,1619 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [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), + [anon_sym_asm] = ACTIONS(1008), + [anon_sym___asm__] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_L_SQUOTE] = ACTIONS(1010), + [anon_sym_u_SQUOTE] = ACTIONS(1010), + [anon_sym_U_SQUOTE] = ACTIONS(1010), + [anon_sym_u8_SQUOTE] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1010), + [anon_sym_L_DQUOTE] = ACTIONS(1010), + [anon_sym_u_DQUOTE] = ACTIONS(1010), + [anon_sym_U_DQUOTE] = ACTIONS(1010), + [anon_sym_u8_DQUOTE] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_null] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1016), + [aux_sym_preproc_include_token1] = ACTIONS(1016), + [aux_sym_preproc_def_token1] = ACTIONS(1016), + [aux_sym_preproc_if_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1016), + [sym_preproc_directive] = ACTIONS(1016), + [anon_sym_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), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = 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), + }, + [239] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [240] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(222), + [sym_compound_statement] = STATE(263), + [sym_attributed_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_goto_statement] = STATE(263), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(256), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [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), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(976), + [anon_sym_asm] = ACTIONS(976), + [anon_sym___asm__] = ACTIONS(976), + [sym_number_literal] = ACTIONS(978), + [anon_sym_L_SQUOTE] = ACTIONS(978), + [anon_sym_u_SQUOTE] = ACTIONS(978), + [anon_sym_U_SQUOTE] = ACTIONS(978), + [anon_sym_u8_SQUOTE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_L_DQUOTE] = ACTIONS(978), + [anon_sym_u_DQUOTE] = ACTIONS(978), + [anon_sym_U_DQUOTE] = ACTIONS(978), + [anon_sym_u8_DQUOTE] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), [sym_comment] = ACTIONS(3), }, [246] = { - [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), + [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__Generic] = ACTIONS(968), + [anon_sym_asm] = ACTIONS(968), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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), + [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__Generic] = ACTIONS(972), + [anon_sym_asm] = ACTIONS(972), + [anon_sym___asm__] = 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), }, [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), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_case_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_return_statement] = STATE(270), + [sym_break_statement] = STATE(270), + [sym_continue_statement] = STATE(270), + [sym_goto_statement] = STATE(270), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), + [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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [250] = { + [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__Generic] = ACTIONS(984), + [anon_sym_asm] = ACTIONS(984), + [anon_sym___asm__] = 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), + }, + [251] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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_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__Generic] = ACTIONS(1040), + [anon_sym_asm] = ACTIONS(1040), + [anon_sym___asm__] = 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), + }, + [253] = { + [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), + [anon_sym_asm] = ACTIONS(906), + [anon_sym___asm__] = 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), }, - [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), + [254] = { + [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__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = 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), + }, + [255] = { + [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__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = 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), + }, + [256] = { + [sym_attribute_declaration] = STATE(157), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36372,77 +37668,242 @@ 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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [257] = { + [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__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = 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), + }, + [258] = { + [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__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = 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), + }, + [259] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36450,77 +37911,161 @@ 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(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [260] = { + [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__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = 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), + }, + [261] = { [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), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), [aux_sym_attributed_declarator_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36528,77 +38073,80 @@ 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(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), - [sym_identifier] = ACTIONS(1146), + [262] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(271), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(271), + [sym_expression_statement] = STATE(271), + [sym_if_statement] = STATE(271), + [sym_switch_statement] = STATE(271), + [sym_case_statement] = STATE(271), + [sym_while_statement] = STATE(271), + [sym_do_statement] = STATE(271), + [sym_for_statement] = STATE(271), + [sym_return_statement] = STATE(271), + [sym_break_statement] = STATE(271), + [sym_continue_statement] = STATE(271), + [sym_goto_statement] = STATE(271), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36606,155 +38154,161 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [263] = { + [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), + [anon_sym_asm] = ACTIONS(1008), + [anon_sym___asm__] = 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), }, - [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), + [264] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(278), + [sym_attributed_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36762,77 +38316,80 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [265] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(279), + [sym_attributed_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -36840,76 +38397,322 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [266] = { + [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__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = 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), + }, + [267] = { + [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__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = 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), + }, + [268] = { + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), + }, + [269] = { + [sym_attribute_declaration] = STATE(293), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(293), [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -36918,233 +38721,242 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [270] = { + [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__Generic] = ACTIONS(932), + [anon_sym_asm] = ACTIONS(932), + [anon_sym___asm__] = 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), }, - [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), - [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), + [271] = { + [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__Generic] = ACTIONS(936), + [anon_sym_asm] = ACTIONS(936), + [anon_sym___asm__] = 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), }, - [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), + [272] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37152,76 +38964,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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [273] = { + [sym_attribute_declaration] = STATE(256), + [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(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -37230,77 +39045,80 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [274] = { + [sym_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(103), + [sym_attributed_statement] = STATE(103), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(103), + [sym_if_statement] = STATE(103), + [sym_switch_statement] = STATE(103), + [sym_case_statement] = STATE(103), + [sym_while_statement] = STATE(103), + [sym_do_statement] = STATE(103), + [sym_for_statement] = STATE(103), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(103), + [sym_continue_statement] = STATE(103), + [sym_goto_statement] = STATE(103), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37308,155 +39126,242 @@ 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(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [275] = { + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), + }, + [276] = { + [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__Generic] = ACTIONS(1036), + [anon_sym_asm] = ACTIONS(1036), + [anon_sym___asm__] = 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), }, - [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), + [277] = { + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(295), + [sym_attributed_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(295), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(295), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37464,77 +39369,242 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [278] = { + [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__Generic] = ACTIONS(940), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = 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), + }, + [279] = { + [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__Generic] = ACTIONS(944), + [anon_sym_asm] = ACTIONS(944), + [anon_sym___asm__] = 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), + }, + [280] = { + [sym_attribute_declaration] = STATE(222), + [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(811), + [sym_comma_expression] = STATE(1349), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1140), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37542,77 +39612,80 @@ 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(371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_if] = ACTIONS(379), + [anon_sym_switch] = ACTIONS(381), + [anon_sym_case] = ACTIONS(383), + [anon_sym_default] = ACTIONS(385), + [anon_sym_while] = ACTIONS(387), + [anon_sym_do] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_return] = ACTIONS(393), + [anon_sym_break] = ACTIONS(395), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_goto] = ACTIONS(399), [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [281] = { + [sym_attribute_declaration] = STATE(269), + [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(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37620,77 +39693,80 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [282] = { + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(1490), + [sym_attributed_statement] = STATE(1490), + [sym_labeled_statement] = STATE(1490), + [sym_expression_statement] = STATE(1490), + [sym_if_statement] = STATE(1490), + [sym_switch_statement] = STATE(1490), + [sym_case_statement] = STATE(1490), + [sym_while_statement] = STATE(1490), + [sym_do_statement] = STATE(1490), + [sym_for_statement] = STATE(1490), + [sym_return_statement] = STATE(1490), + [sym_break_statement] = STATE(1490), + [sym_continue_statement] = STATE(1490), + [sym_goto_statement] = STATE(1490), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37699,7 +39775,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(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -37716,59 +39792,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [283] = { + [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__Generic] = ACTIONS(952), + [anon_sym_asm] = ACTIONS(952), + [anon_sym___asm__] = 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), + }, + [284] = { + [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), + [anon_sym_asm] = ACTIONS(1028), + [anon_sym___asm__] = 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), + }, + [285] = { + [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), + [anon_sym_asm] = ACTIONS(1020), + [anon_sym___asm__] = 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), + }, + [286] = { + [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), + [anon_sym_asm] = ACTIONS(1012), + [anon_sym___asm__] = 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), + }, + [287] = { + [sym_attribute_declaration] = STATE(269), + [sym_compound_statement] = STATE(305), + [sym_attributed_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1144), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -37776,198 +40179,368 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [288] = { + [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__Generic] = ACTIONS(992), + [anon_sym_asm] = ACTIONS(992), + [anon_sym___asm__] = 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), }, - [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), + [289] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(181), + [sym_compound_statement] = STATE(73), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), + [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(1142), + [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [271] = { - [sym_attribute_declaration] = STATE(243), + [291] = { + [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__Generic] = ACTIONS(980), + [anon_sym_asm] = ACTIONS(980), + [anon_sym___asm__] = 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), + }, + [292] = { + [sym_attribute_declaration] = STATE(181), [sym_compound_statement] = STATE(87), [sym_attributed_statement] = STATE(87), [sym_labeled_statement] = STATE(87), @@ -37982,27 +40555,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__expression] = STATE(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38010,77 +40584,485 @@ 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(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [293] = { + [sym_attribute_declaration] = STATE(293), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(777), + [sym_comma_expression] = STATE(1519), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(1319), + [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(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1166), + [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(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1214), + [anon_sym___asm__] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1220), + [anon_sym_u_SQUOTE] = ACTIONS(1220), + [anon_sym_U_SQUOTE] = ACTIONS(1220), + [anon_sym_u8_SQUOTE] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1226), + [sym_false] = ACTIONS(1226), + [sym_null] = ACTIONS(1226), + [sym_comment] = ACTIONS(3), + }, + [294] = { + [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__Generic] = ACTIONS(924), + [anon_sym_asm] = ACTIONS(924), + [anon_sym___asm__] = 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), + }, + [295] = { + [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(1361), + [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), + [anon_sym_asm] = ACTIONS(918), + [anon_sym___asm__] = 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), + }, + [296] = { + [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__Generic] = ACTIONS(906), + [anon_sym_asm] = ACTIONS(906), + [anon_sym___asm__] = 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), + }, + [297] = { + [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), + [anon_sym_asm] = ACTIONS(914), + [anon_sym___asm__] = 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), + }, + [298] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38088,155 +41070,80 @@ 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(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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), - [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [299] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38244,77 +41151,80 @@ 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(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [300] = { + [sym_attribute_declaration] = STATE(181), + [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(818), + [sym_comma_expression] = STATE(1416), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1231), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38322,311 +41232,566 @@ 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(113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1142), + [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + }, + [301] = { + [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), + [anon_sym_asm] = ACTIONS(1016), + [anon_sym___asm__] = 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), + }, + [302] = { + [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__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(988), + [anon_sym___asm__] = 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), + }, + [303] = { + [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), + [anon_sym_asm] = ACTIONS(1024), + [anon_sym___asm__] = 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), }, - [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), + [304] = { + [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__Generic] = ACTIONS(976), + [anon_sym_asm] = ACTIONS(976), + [anon_sym___asm__] = 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), }, - [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), + [305] = { + [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__Generic] = ACTIONS(964), + [anon_sym_asm] = ACTIONS(964), + [anon_sym___asm__] = 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), }, - [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), + [306] = { + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = 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), }, - [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), + [307] = { + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(1514), + [sym_attributed_statement] = STATE(1514), + [sym_labeled_statement] = STATE(1514), + [sym_expression_statement] = STATE(1514), + [sym_if_statement] = STATE(1514), + [sym_switch_statement] = STATE(1514), + [sym_case_statement] = STATE(1514), + [sym_while_statement] = STATE(1514), + [sym_do_statement] = STATE(1514), + [sym_for_statement] = STATE(1514), + [sym_return_statement] = STATE(1514), + [sym_break_statement] = STATE(1514), + [sym_continue_statement] = STATE(1514), + [sym_goto_statement] = STATE(1514), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38635,7 +41800,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(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -38652,137 +41817,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, - [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), + [308] = { + [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__Generic] = ACTIONS(960), + [anon_sym_asm] = ACTIONS(960), + [anon_sym___asm__] = ACTIONS(960), + [sym_number_literal] = ACTIONS(962), + [anon_sym_L_SQUOTE] = ACTIONS(962), + [anon_sym_u_SQUOTE] = ACTIONS(962), + [anon_sym_U_SQUOTE] = ACTIONS(962), + [anon_sym_u8_SQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_L_DQUOTE] = ACTIONS(962), + [anon_sym_u_DQUOTE] = ACTIONS(962), + [anon_sym_U_DQUOTE] = ACTIONS(962), + [anon_sym_u8_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_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), + [309] = { + [sym_attribute_declaration] = STATE(256), + [sym_compound_statement] = STATE(1526), + [sym_attributed_statement] = STATE(1526), + [sym_labeled_statement] = STATE(1526), + [sym_expression_statement] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_switch_statement] = STATE(1526), + [sym_case_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_do_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_return_statement] = STATE(1526), + [sym_break_statement] = STATE(1526), + [sym_continue_statement] = STATE(1526), + [sym_goto_statement] = STATE(1526), + [sym__expression] = STATE(771), + [sym_comma_expression] = STATE(1515), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [aux_sym_attributed_declarator_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(1146), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -38791,7 +41962,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(1142), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -38808,23 +41979,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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] = { + [310] = { + [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), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = 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), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1110), [sym_identifier] = ACTIONS(1108), [aux_sym_preproc_include_token1] = ACTIONS(1108), [aux_sym_preproc_def_token1] = ACTIONS(1108), @@ -38852,7 +42106,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -38886,6 +42139,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1110), [anon_sym_sizeof] = ACTIONS(1108), [anon_sym__Generic] = ACTIONS(1108), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = ACTIONS(1108), [sym_number_literal] = ACTIONS(1110), [anon_sym_L_SQUOTE] = ACTIONS(1110), [anon_sym_u_SQUOTE] = ACTIONS(1110), @@ -38902,90 +42157,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1108), [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), - [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), + [312] = { + [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), + [anon_sym_asm] = ACTIONS(1052), + [anon_sym___asm__] = 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), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [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), + [anon_sym_asm] = ACTIONS(1048), + [anon_sym___asm__] = 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), }, - [284] = { + [316] = { + [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_if_token2] = ACTIONS(1112), [aux_sym_preproc_ifdef_token1] = ACTIONS(1112), [aux_sym_preproc_ifdef_token2] = ACTIONS(1112), [sym_preproc_directive] = ACTIONS(1112), @@ -39042,6 +42539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1114), [anon_sym_sizeof] = ACTIONS(1112), [anon_sym__Generic] = ACTIONS(1112), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = ACTIONS(1112), [sym_number_literal] = ACTIONS(1114), [anon_sym_L_SQUOTE] = ACTIONS(1114), [anon_sym_u_SQUOTE] = ACTIONS(1114), @@ -39050,955 +42549,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - [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), - [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), - }, - [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), - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [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__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), + [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), }, - [297] = { + [317] = { + [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), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = 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), + }, + [318] = { [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), @@ -40022,7 +42666,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -40056,6 +42699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1054), [anon_sym_sizeof] = ACTIONS(1052), [anon_sym__Generic] = ACTIONS(1052), + [anon_sym_asm] = ACTIONS(1052), + [anon_sym___asm__] = ACTIONS(1052), [sym_number_literal] = ACTIONS(1054), [anon_sym_L_SQUOTE] = ACTIONS(1054), [anon_sym_u_SQUOTE] = ACTIONS(1054), @@ -40072,632 +42717,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1052), [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), - [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), - [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), - [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(1072), + [aux_sym_preproc_include_token1] = ACTIONS(1072), + [aux_sym_preproc_def_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token1] = ACTIONS(1072), + [aux_sym_preproc_if_token2] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), + [sym_preproc_directive] = ACTIONS(1072), + [anon_sym_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), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = 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), }, - [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(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), + [anon_sym_asm] = ACTIONS(1076), + [anon_sym___asm__] = 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), }, - [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(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), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = 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), }, - [306] = { - [ts_builtin_sym_end] = 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_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), + [anon_sym_asm] = ACTIONS(1092), + [anon_sym___asm__] = 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(1060), [aux_sym_preproc_include_token1] = ACTIONS(1060), [aux_sym_preproc_def_token1] = ACTIONS(1060), @@ -40725,680 +43065,139 @@ 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), [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), - }, - [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), - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [313] = { - [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_RBRACE] = 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), + [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), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = 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), }, - [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), + [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__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1044), + [anon_sym___asm__] = 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), }, - [315] = { + [325] = { [ts_builtin_sym_end] = ACTIONS(1118), [sym_identifier] = ACTIONS(1116), [aux_sym_preproc_include_token1] = ACTIONS(1116), @@ -41460,6 +43259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1118), [anon_sym_sizeof] = ACTIONS(1116), [anon_sym__Generic] = ACTIONS(1116), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = ACTIONS(1116), [sym_number_literal] = ACTIONS(1118), [anon_sym_L_SQUOTE] = ACTIONS(1118), [anon_sym_u_SQUOTE] = ACTIONS(1118), @@ -41476,480 +43277,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1116), [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), - [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), - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [320] = { - [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__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), + [326] = { + [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), + [anon_sym_asm] = ACTIONS(1068), + [anon_sym___asm__] = 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), }, - [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), + [327] = { + [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), + [anon_sym_asm] = ACTIONS(1072), + [anon_sym___asm__] = 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] = { + [328] = { + [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), + [anon_sym_asm] = ACTIONS(1044), + [anon_sym___asm__] = 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), + }, + [329] = { + [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_if_token2] = ACTIONS(1084), [aux_sym_preproc_ifdef_token1] = ACTIONS(1084), [aux_sym_preproc_ifdef_token2] = ACTIONS(1084), [sym_preproc_directive] = ACTIONS(1084), @@ -42006,6 +43579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), + [anon_sym_asm] = ACTIONS(1084), + [anon_sym___asm__] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), [anon_sym_u_SQUOTE] = ACTIONS(1086), @@ -42022,323 +43597,92 @@ 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), - [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), - [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), + [330] = { + [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), + [anon_sym_asm] = ACTIONS(1048), + [anon_sym___asm__] = 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), }, - [327] = { + [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), @@ -42362,7 +43706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -42396,6 +43739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1050), [anon_sym_sizeof] = ACTIONS(1048), [anon_sym__Generic] = ACTIONS(1048), + [anon_sym_asm] = ACTIONS(1048), + [anon_sym___asm__] = ACTIONS(1048), [sym_number_literal] = ACTIONS(1050), [anon_sym_L_SQUOTE] = ACTIONS(1050), [anon_sym_u_SQUOTE] = ACTIONS(1050), @@ -42412,631 +43757,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1048), [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), - [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), - [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), + [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), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = 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), }, [333] = { - [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), - [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_RBRACE] = 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_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_RBRACE] = 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), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = 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), }, [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_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), + [anon_sym_asm] = ACTIONS(1096), + [anon_sym___asm__] = 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), }, [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), @@ -43098,6 +44059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1082), [anon_sym_sizeof] = ACTIONS(1080), [anon_sym__Generic] = ACTIONS(1080), + [anon_sym_asm] = ACTIONS(1080), + [anon_sym___asm__] = ACTIONS(1080), [sym_number_literal] = ACTIONS(1082), [anon_sym_L_SQUOTE] = ACTIONS(1082), [anon_sym_u_SQUOTE] = ACTIONS(1082), @@ -43114,397 +44077,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [336] = { + [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), + [anon_sym_asm] = ACTIONS(1068), + [anon_sym___asm__] = 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), }, - [342] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1046), [sym_identifier] = ACTIONS(1044), [aux_sym_preproc_include_token1] = ACTIONS(1044), @@ -43566,6 +44219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1046), [anon_sym_sizeof] = ACTIONS(1044), [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1044), + [anon_sym___asm__] = ACTIONS(1044), [sym_number_literal] = ACTIONS(1046), [anon_sym_L_SQUOTE] = ACTIONS(1046), [anon_sym_u_SQUOTE] = ACTIONS(1046), @@ -43582,324 +44237,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1044), [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), + [338] = { + [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), + [anon_sym_asm] = ACTIONS(1092), + [anon_sym___asm__] = 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), + }, + [339] = { + [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), + [anon_sym_asm] = ACTIONS(1092), + [anon_sym___asm__] = 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), + }, + [340] = { + [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), + [anon_sym_asm] = ACTIONS(1068), + [anon_sym___asm__] = 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), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1090), + [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_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), + [anon_sym_asm] = ACTIONS(1088), + [anon_sym___asm__] = 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), + }, + [342] = { + [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), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = 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), + }, + [343] = { + [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), + [anon_sym_asm] = ACTIONS(1096), + [anon_sym___asm__] = 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), + }, + [344] = { + [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), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = 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), + }, + [345] = { + [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), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = 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), }, - [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), + [346] = { + [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), + [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), + [anon_sym_asm] = ACTIONS(1084), + [anon_sym___asm__] = 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), }, - [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), + [347] = { + [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), + [anon_sym_asm] = ACTIONS(1104), + [anon_sym___asm__] = 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), }, - [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), + [348] = { + [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), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = 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), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1082), + [349] = { [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), @@ -43945,1516 +45168,836 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [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_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), - [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), - [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), - [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), - [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), - [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), + [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), + [anon_sym_asm] = ACTIONS(1080), + [anon_sym___asm__] = 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), }, - [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), + [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), + [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), + [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), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = 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), }, - [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), + [351] = { + [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), + [anon_sym_asm] = ACTIONS(1100), + [anon_sym___asm__] = 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), }, - [359] = { - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(1072), - [aux_sym_preproc_def_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token1] = ACTIONS(1072), - [aux_sym_preproc_if_token2] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1072), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1072), - [sym_preproc_directive] = ACTIONS(1072), - [anon_sym_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), + [352] = { + [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), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = 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), }, - [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), + [353] = { + [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), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = 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), }, - [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), + [354] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), [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), + [355] = { + [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), + [anon_sym_asm] = ACTIONS(1108), + [anon_sym___asm__] = 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), }, - [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), + [356] = { + [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), + [anon_sym_asm] = ACTIONS(1088), + [anon_sym___asm__] = 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), }, - [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), + [357] = { + [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), + [anon_sym_asm] = ACTIONS(1052), + [anon_sym___asm__] = 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), }, - [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), + [358] = { + [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), + [anon_sym_asm] = ACTIONS(1076), + [anon_sym___asm__] = 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), }, - [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), + [359] = { + [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__Generic] = ACTIONS(1076), + [anon_sym_asm] = ACTIONS(1076), + [anon_sym___asm__] = 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), }, - [367] = { + [360] = { [sym_identifier] = ACTIONS(1084), [aux_sym_preproc_include_token1] = ACTIONS(1084), [aux_sym_preproc_def_token1] = ACTIONS(1084), @@ -45516,6 +46059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1086), [anon_sym_sizeof] = ACTIONS(1084), [anon_sym__Generic] = ACTIONS(1084), + [anon_sym_asm] = ACTIONS(1084), + [anon_sym___asm__] = ACTIONS(1084), [sym_number_literal] = ACTIONS(1086), [anon_sym_L_SQUOTE] = ACTIONS(1086), [anon_sym_u_SQUOTE] = ACTIONS(1086), @@ -45532,427 +46077,998 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1084), [sym_comment] = ACTIONS(3), }, + [361] = { + [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), + [anon_sym_asm] = ACTIONS(1116), + [anon_sym___asm__] = 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), + }, + [362] = { + [sym_identifier] = ACTIONS(1124), + [aux_sym_preproc_include_token1] = ACTIONS(1124), + [aux_sym_preproc_def_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token1] = ACTIONS(1124), + [aux_sym_preproc_if_token2] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1124), + [sym_preproc_directive] = ACTIONS(1124), + [anon_sym_LPAREN2] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1124), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym___attribute__] = ACTIONS(1124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1126), + [anon_sym___declspec] = ACTIONS(1124), + [anon_sym___cdecl] = ACTIONS(1124), + [anon_sym___clrcall] = ACTIONS(1124), + [anon_sym___stdcall] = ACTIONS(1124), + [anon_sym___fastcall] = ACTIONS(1124), + [anon_sym___thiscall] = ACTIONS(1124), + [anon_sym___vectorcall] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_auto] = ACTIONS(1124), + [anon_sym_register] = ACTIONS(1124), + [anon_sym_inline] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_volatile] = ACTIONS(1124), + [anon_sym_restrict] = ACTIONS(1124), + [anon_sym___restrict__] = ACTIONS(1124), + [anon_sym__Atomic] = ACTIONS(1124), + [anon_sym__Noreturn] = ACTIONS(1124), + [anon_sym_signed] = ACTIONS(1124), + [anon_sym_unsigned] = ACTIONS(1124), + [anon_sym_long] = ACTIONS(1124), + [anon_sym_short] = ACTIONS(1124), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_goto] = ACTIONS(1124), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_sizeof] = ACTIONS(1124), + [anon_sym__Generic] = ACTIONS(1124), + [anon_sym_asm] = ACTIONS(1124), + [anon_sym___asm__] = ACTIONS(1124), + [sym_number_literal] = ACTIONS(1126), + [anon_sym_L_SQUOTE] = ACTIONS(1126), + [anon_sym_u_SQUOTE] = ACTIONS(1126), + [anon_sym_U_SQUOTE] = ACTIONS(1126), + [anon_sym_u8_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_L_DQUOTE] = ACTIONS(1126), + [anon_sym_u_DQUOTE] = ACTIONS(1126), + [anon_sym_U_DQUOTE] = ACTIONS(1126), + [anon_sym_u8_DQUOTE] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [sym_true] = ACTIONS(1124), + [sym_false] = ACTIONS(1124), + [sym_null] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [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), + [anon_sym_asm] = ACTIONS(1112), + [anon_sym___asm__] = 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), + }, + [365] = { + [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), + [anon_sym_asm] = ACTIONS(1096), + [anon_sym___asm__] = 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), + }, + [366] = { + [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), + [anon_sym_asm] = ACTIONS(1056), + [anon_sym___asm__] = 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), + }, + [367] = { + [sym_identifier] = ACTIONS(1120), + [aux_sym_preproc_include_token1] = ACTIONS(1120), + [aux_sym_preproc_def_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token1] = ACTIONS(1120), + [aux_sym_preproc_if_token2] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1120), + [sym_preproc_directive] = ACTIONS(1120), + [anon_sym_LPAREN2] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1120), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym___attribute__] = ACTIONS(1120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1122), + [anon_sym___declspec] = ACTIONS(1120), + [anon_sym___cdecl] = ACTIONS(1120), + [anon_sym___clrcall] = ACTIONS(1120), + [anon_sym___stdcall] = ACTIONS(1120), + [anon_sym___fastcall] = ACTIONS(1120), + [anon_sym___thiscall] = ACTIONS(1120), + [anon_sym___vectorcall] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_auto] = ACTIONS(1120), + [anon_sym_register] = ACTIONS(1120), + [anon_sym_inline] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_volatile] = ACTIONS(1120), + [anon_sym_restrict] = ACTIONS(1120), + [anon_sym___restrict__] = ACTIONS(1120), + [anon_sym__Atomic] = ACTIONS(1120), + [anon_sym__Noreturn] = ACTIONS(1120), + [anon_sym_signed] = ACTIONS(1120), + [anon_sym_unsigned] = ACTIONS(1120), + [anon_sym_long] = ACTIONS(1120), + [anon_sym_short] = ACTIONS(1120), + [sym_primitive_type] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_do] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(1122), + [anon_sym_PLUS_PLUS] = ACTIONS(1122), + [anon_sym_sizeof] = ACTIONS(1120), + [anon_sym__Generic] = ACTIONS(1120), + [anon_sym_asm] = ACTIONS(1120), + [anon_sym___asm__] = ACTIONS(1120), + [sym_number_literal] = ACTIONS(1122), + [anon_sym_L_SQUOTE] = ACTIONS(1122), + [anon_sym_u_SQUOTE] = ACTIONS(1122), + [anon_sym_U_SQUOTE] = ACTIONS(1122), + [anon_sym_u8_SQUOTE] = ACTIONS(1122), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_L_DQUOTE] = ACTIONS(1122), + [anon_sym_u_DQUOTE] = ACTIONS(1122), + [anon_sym_U_DQUOTE] = ACTIONS(1122), + [anon_sym_u8_DQUOTE] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1122), + [sym_true] = ACTIONS(1120), + [sym_false] = ACTIONS(1120), + [sym_null] = ACTIONS(1120), + [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_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), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = 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), }, [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), + [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), + [anon_sym_asm] = ACTIONS(1080), + [anon_sym___asm__] = 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), }, [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_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), + [anon_sym_asm] = ACTIONS(1088), + [anon_sym___asm__] = 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), }, [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_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), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym___asm__] = 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), + }, + [372] = { + [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), + [anon_sym_asm] = ACTIONS(1064), + [anon_sym___asm__] = 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), }, [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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1436), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45966,10 +47082,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), @@ -45978,53 +47094,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1504), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46038,10 +47157,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), @@ -46050,53 +47169,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1512), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46110,10 +47232,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), @@ -46122,53 +47244,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1506), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46182,10 +47307,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), @@ -46194,125 +47319,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_type_qualifier] = STATE(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1408), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), + [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_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_AMP] = ACTIONS(25), + [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(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), + [anon_sym_union] = ACTIONS(55), [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), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1424), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46326,10 +47457,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), @@ -46338,53 +47469,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), + [sym_type_qualifier] = STATE(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1396), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46398,10 +47532,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), @@ -46410,125 +47544,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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__expression] = STATE(617), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_initializer_list] = STATE(624), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_identifier] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_RPAREN] = ACTIONS(888), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [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_AMP] = ACTIONS(25), - [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(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), + [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__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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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(891), + [sym__type_specifier] = STATE(1007), + [sym_sized_type_specifier] = STATE(910), + [sym_enum_specifier] = STATE(910), + [sym_struct_specifier] = STATE(910), + [sym_union_specifier] = STATE(910), + [sym__expression] = STATE(772), + [sym_comma_expression] = STATE(1507), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(633), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_type_descriptor] = STATE(1483), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(633), + [sym_call_expression] = STATE(633), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(633), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(633), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_macro_type_specifier] = STATE(910), + [aux_sym_type_definition_repeat1] = STATE(891), + [aux_sym_sized_type_specifier_repeat1] = STATE(1021), + [sym_identifier] = ACTIONS(1363), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46542,10 +47682,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), @@ -46554,226 +47694,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_asm] = ACTIONS(85), + [anon_sym___asm__] = 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__Generic] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1369), + [anon_sym___asm__] = 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__expression] = STATE(659), + [sym_conditional_expression] = STATE(627), + [sym_assignment_expression] = STATE(627), + [sym_pointer_expression] = STATE(666), + [sym_unary_expression] = STATE(627), + [sym_binary_expression] = STATE(627), + [sym_update_expression] = STATE(627), + [sym_cast_expression] = STATE(627), + [sym_sizeof_expression] = STATE(627), + [sym_generic_expression] = STATE(627), + [sym_subscript_expression] = STATE(666), + [sym_call_expression] = STATE(666), + [sym_gnu_asm_expression] = STATE(627), + [sym_field_expression] = STATE(666), + [sym_compound_literal_expression] = STATE(627), + [sym_parenthesized_expression] = STATE(666), + [sym_initializer_list] = STATE(624), + [sym_char_literal] = STATE(627), + [sym_concatenated_string] = STATE(627), + [sym_string_literal] = STATE(442), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1381), + [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(1134), + [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(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = 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), }, [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_identifier] = ACTIONS(1387), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym___declspec] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [anon_sym___restrict__] = ACTIONS(1387), + [anon_sym__Atomic] = ACTIONS(1387), + [anon_sym__Noreturn] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_COLON] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_case] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_sizeof] = ACTIONS(1387), + [anon_sym__Generic] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym___asm__] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_L_SQUOTE] = ACTIONS(1389), + [anon_sym_u_SQUOTE] = ACTIONS(1389), + [anon_sym_U_SQUOTE] = ACTIONS(1389), + [anon_sym_u8_SQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_L_DQUOTE] = ACTIONS(1389), + [anon_sym_u_DQUOTE] = ACTIONS(1389), + [anon_sym_U_DQUOTE] = ACTIONS(1389), + [anon_sym_u8_DQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_true] = ACTIONS(1387), + [sym_false] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), [sym_comment] = ACTIONS(3), }, }; @@ -46782,30 +47931,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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - 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,540 +47956,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1387), 21, - 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, - [75] = 30, - 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(1392), 1, - sym_identifier, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_RPAREN, - ACTIONS(1398), 1, - anon_sym_LPAREN2, - ACTIONS(1400), 1, - anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1404), 1, - anon_sym_LBRACK, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, - sym__declaration_specifiers, - STATE(1111), 1, - sym__declarator, - STATE(1127), 1, - sym_parameter_list, - STATE(1151), 1, - sym__abstract_declarator, - STATE(1379), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - 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, - 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, - 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, - [196] = 26, - 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, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1412), 1, - aux_sym_preproc_if_token2, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1476), 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(392), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [306] = 26, - 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, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1422), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1442), 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(398), 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, - [416] = 26, - 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, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1424), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1391), 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(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, - [526] = 26, - 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, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1426), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1465), 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(396), 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, - [636] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + ACTIONS(1396), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + sym_null, + ACTIONS(1398), 21, + anon_sym_extern, 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, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1428), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1343), 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(399), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [746] = 26, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [77] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47374,51 +48014,67 @@ 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(1403), 1, sym_identifier, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1430), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, + ACTIONS(1405), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(1409), 1, + anon_sym_LPAREN2, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(1415), 1, + anon_sym_LBRACK, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(938), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1441), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, + STATE(1129), 1, + sym__declarator, + STATE(1166), 1, + sym_parameter_list, + STATE(1186), 1, + sym__abstract_declarator, + STATE(1472), 1, + sym_ms_based_modifier, + STATE(1233), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + STATE(1112), 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, @@ -47426,7 +48082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47434,16 +48090,91 @@ static const uint16_t ts_small_parse_table[] = { 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, - [856] = 26, + [198] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1417), 1, + anon_sym_COMMA, + ACTIONS(1419), 1, + anon_sym_RBRACE, + ACTIONS(1421), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, + anon_sym_DOT, + STATE(442), 1, + sym_string_literal, + STATE(720), 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, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1261), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + STATE(1144), 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [307] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47458,32 +48189,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(1425), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1427), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1431), 1, + aux_sym_preproc_if_token2, + ACTIONS(1435), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1437), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, sym_preproc_directive, - ACTIONS(1432), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1433), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1341), 2, + STATE(1386), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47497,7 +48228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47510,7 +48241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47518,7 +48249,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(409), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47527,175 +48258,167 @@ 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, + [417] = 22, 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, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1434), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1399), 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, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1441), 1, + anon_sym_STAR, + ACTIONS(1443), 1, + anon_sym_RBRACK, + STATE(442), 1, + sym_string_literal, + STATE(856), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(663), 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(666), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1445), 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(389), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1076] = 26, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [519] = 22, 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, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1436), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1382), 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, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1447), 1, + anon_sym_STAR, + ACTIONS(1449), 1, + anon_sym_RBRACK, + STATE(442), 1, + sym_string_literal, + STATE(854), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(398), 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(666), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1445), 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, - [1186] = 26, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [621] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47710,32 +48433,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(1425), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1427), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1435), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1437), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, sym_preproc_directive, - ACTIONS(1438), 1, + ACTIONS(1451), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1433), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1474), 2, + STATE(1492), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47749,7 +48472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47762,7 +48485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47770,7 +48493,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(401), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47779,7 +48502,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, + [731] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47794,32 +48517,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(1425), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1427), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1435), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1437), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, sym_preproc_directive, - ACTIONS(1440), 1, + ACTIONS(1453), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1433), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1392), 2, + STATE(1445), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -47833,7 +48556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -47846,7 +48569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -47854,7 +48577,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(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -47863,91 +48586,169 @@ 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, + [841] = 22, 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, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1408), 1, - aux_sym_preproc_def_token1, - ACTIONS(1410), 1, - aux_sym_preproc_if_token1, - ACTIONS(1416), 1, - aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1442), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1466), 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, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1455), 1, + anon_sym_STAR, + ACTIONS(1457), 1, + anon_sym_RBRACK, + STATE(442), 1, + sym_string_literal, + STATE(851), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(411), 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(666), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1445), 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, - [1516] = 26, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [943] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1421), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, + anon_sym_DOT, + ACTIONS(1459), 1, + anon_sym_RBRACE, + STATE(442), 1, + sym_string_literal, + STATE(821), 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, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1297), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(93), 3, + sym_true, + sym_false, + sym_null, + STATE(1144), 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [1049] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -47962,32 +48763,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(1425), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1427), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1435), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, + ACTIONS(1437), 1, aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, + ACTIONS(1439), 1, sym_preproc_directive, - ACTIONS(1444), 1, + ACTIONS(1461), 1, aux_sym_preproc_if_token2, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1414), 2, + ACTIONS(1433), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1332), 2, + STATE(1440), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(47), 4, @@ -48001,7 +48802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -48014,7 +48815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -48022,7 +48823,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, @@ -48031,7 +48832,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, + [1159] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -48046,749 +48847,387 @@ 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(1425), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1427), 1, aux_sym_preproc_def_token1, - ACTIONS(1410), 1, + ACTIONS(1429), 1, aux_sym_preproc_if_token1, - ACTIONS(1416), 1, + ACTIONS(1435), 1, aux_sym_preproc_else_token1, - ACTIONS(1418), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1420), 1, - sym_preproc_directive, - ACTIONS(1446), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, - sym__declaration_specifiers, - ACTIONS(1414), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1348), 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, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1463), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1441), 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___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + STATE(910), 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(665), 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(403), 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, + [1269] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, + sym_identifier, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1465), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1463), 1, - anon_sym_EQ, - 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(1456), 12, + ACTIONS(1467), 1, + anon_sym_RBRACK, + STATE(442), 1, + sym_string_literal, + STATE(860), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 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(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 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(407), 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(666), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1445), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [2360] = 9, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [1371] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 1, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, + sym_identifier, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1469), 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(1471), 1, + anon_sym_RBRACK, + STATE(442), 1, + sym_string_literal, + STATE(836), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 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(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1448), 15, - anon_sym_extern, + STATE(663), 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(666), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1445), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [1473] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym___based, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1473), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1397), 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(910), 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, - [2434] = 24, + STATE(665), 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(392), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1583] = 22, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1478), 1, - anon_sym_COMMA, - ACTIONS(1480), 1, - anon_sym_RBRACE, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_DOT, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1381), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_sizeof, + ACTIONS(1475), 1, + anon_sym_STAR, + ACTIONS(1477), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(749), 1, + STATE(857), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1167), 2, - sym_initializer_list, - sym_initializer_pair, - ACTIONS(91), 3, + STATE(412), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1118), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + ACTIONS(1445), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48797,72 +49236,330 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2538] = 23, + [1685] = 26, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1479), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1511), 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(910), 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(665), 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, + [1795] = 26, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1481), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1444), 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(910), 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(665), 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(404), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [1905] = 26, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1483), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1479), 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(910), 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(665), 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, + [2015] = 26, 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, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1509), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1512), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1521), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1524), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1527), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1530), 1, + ACTIONS(55), 1, anon_sym_union, - STATE(700), 1, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1485), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1015), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1497), 2, + ACTIONS(1433), 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, + STATE(1431), 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(1503), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1515), 6, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -48870,7 +49567,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, @@ -48879,71 +49576,74 @@ 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, - [2640] = 21, + [2125] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1381), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - ACTIONS(1533), 1, + ACTIONS(1487), 1, anon_sym_STAR, - ACTIONS(1535), 1, + ACTIONS(1489), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(850), 1, + STATE(833), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(414), 2, + STATE(389), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1445), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -48952,74 +49652,162 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2737] = 21, + [2227] = 26, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1491), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1455), 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(910), 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(665), 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(395), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + [2337] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1381), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - ACTIONS(1539), 1, + ACTIONS(1493), 1, anon_sym_STAR, - ACTIONS(1541), 1, + ACTIONS(1495), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(841), 1, + STATE(861), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(417), 2, + STATE(663), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1445), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49028,150 +49816,248 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [2834] = 21, + [2439] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1366), 1, + 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(1425), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1374), 1, - anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1543), 1, - anon_sym_STAR, - ACTIONS(1545), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(820), 1, - sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1376), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(658), 2, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1497), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1375), 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(910), 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(665), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, 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, + aux_sym__declaration_specifiers_repeat1, + STATE(413), 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, + [2549] = 26, + 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(1425), 1, + sym_identifier, + ACTIONS(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1499), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1372), 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(910), 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(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, - [2931] = 21, + STATE(665), 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, + [2659] = 24, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1374), 1, - anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1549), 1, - anon_sym_RBRACK, - STATE(435), 1, + ACTIONS(1421), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, + anon_sym_DOT, + ACTIONS(1501), 1, + anon_sym_RBRACE, + STATE(442), 1, sym_string_literal, - STATE(851), 1, + STATE(821), 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(1376), 2, + 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(658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1297), 2, + sym_initializer_list, + sym_initializer_pair, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - ACTIONS(87), 5, + STATE(1144), 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(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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49180,74 +50066,78 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3028] = 21, + [2765] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1381), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - ACTIONS(1551), 1, + ACTIONS(1503), 1, anon_sym_STAR, - ACTIONS(1553), 1, + ACTIONS(1505), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(846), 1, + STATE(869), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(423), 2, + STATE(663), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1445), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49256,74 +50146,78 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3125] = 21, + [2867] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1381), 1, anon_sym_AMP, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1507), 1, anon_sym_STAR, - ACTIONS(1557), 1, + ACTIONS(1509), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(826), 1, + STATE(864), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1376), 2, + ACTIONS(1383), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(658), 2, + STATE(663), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1537), 6, + ACTIONS(1445), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49332,164 +50226,162 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3222] = 23, + [2969] = 26, 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, + 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(1425), 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, - 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(1427), 1, + aux_sym_preproc_def_token1, + ACTIONS(1429), 1, + aux_sym_preproc_if_token1, + ACTIONS(1435), 1, + aux_sym_preproc_else_token1, + ACTIONS(1437), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1439), 1, + sym_preproc_directive, + ACTIONS(1511), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1026), 1, + sym__declaration_specifiers, + ACTIONS(1433), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1363), 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(910), 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(665), 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, + [3079] = 10, 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, - anon_sym_LPAREN2, - ACTIONS(1374), 1, - anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1561), 1, - anon_sym_STAR, - ACTIONS(1563), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(823), 1, - sym__expression, - ACTIONS(1370), 2, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1521), 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(1515), 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, - STATE(415), 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(1513), 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, - [3420] = 23, + sym_identifier, + [3156] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -49498,21 +50390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(1421), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1423), 1, anon_sym_DOT, - ACTIONS(1565), 1, - anon_sym_RBRACE, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(769), 1, + STATE(821), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -49526,36 +50416,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(1233), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1297), 2, sym_initializer_list, sym_initializer_pair, - ACTIONS(91), 3, + ACTIONS(93), 3, sym_true, sym_false, sym_null, - STATE(1118), 3, + STATE(1144), 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -49564,374 +50457,611 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [3521] = 21, + [3259] = 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(1517), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(1534), 1, + anon_sym_SEMI, + ACTIONS(1532), 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(1515), 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(1521), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1567), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1513), 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, + [3338] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 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(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1537), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1521), 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(1515), 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, - 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(1513), 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, + [3415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1534), 1, + anon_sym_SEMI, + ACTIONS(1537), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1515), 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(1521), 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(1513), 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, - ACTIONS(1368), 1, + [3494] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1534), 1, + anon_sym_SEMI, + ACTIONS(1539), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1515), 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(1521), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1571), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1513), 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, + [3573] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1573), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(855), 1, - sym__expression, - ACTIONS(1370), 2, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1539), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1521), 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(1515), 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, - STATE(421), 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(1513), 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, + [3650] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1534), 1, + anon_sym_SEMI, + ACTIONS(1541), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1515), 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(1521), 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(1513), 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, + [3729] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1541), 1, + anon_sym_COLON, + ACTIONS(1532), 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(1521), 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(1515), 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(1513), 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, - [3715] = 21, + sym_identifier, + [3806] = 9, 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(1517), 1, anon_sym_LPAREN2, - ACTIONS(1374), 1, - anon_sym_AMP, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1575), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1577), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(816), 1, - sym__expression, - ACTIONS(1370), 2, + ACTIONS(1526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1532), 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(1521), 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(1515), 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, - 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(1513), 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, - [3812] = 22, - 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, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_DOT, - 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, - 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, - [3910] = 23, + [3880] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + 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(37), 1, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1578), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1581), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1584), 1, anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, - sym_identifier, - ACTIONS(1579), 1, - aux_sym_preproc_def_token1, - ACTIONS(1581), 1, - aux_sym_preproc_if_token1, - ACTIONS(1583), 1, - aux_sym_preproc_if_token2, ACTIONS(1587), 1, - sym_preproc_directive, - STATE(700), 1, + anon_sym_union, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1026), 1, sym__declaration_specifiers, - ACTIONS(1585), 2, + ACTIONS(1554), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, + 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(43), 5, + ACTIONS(1560), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 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(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -49939,7 +51069,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(424), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -49948,67 +51078,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, - [4010] = 23, + [3982] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1563), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(1566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1569), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(1578), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(1581), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(1584), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(1587), 1, anon_sym_union, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 1, - sym_identifier, - ACTIONS(1579), 1, + ACTIONS(1590), 1, aux_sym_preproc_def_token1, - ACTIONS(1581), 1, + ACTIONS(1593), 1, aux_sym_preproc_if_token1, - ACTIONS(1587), 1, + ACTIONS(1599), 1, sym_preproc_directive, - ACTIONS(1589), 1, - aux_sym_preproc_if_token2, - STATE(700), 1, + ACTIONS(1602), 1, + anon_sym_RBRACE, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1025), 1, sym__declaration_specifiers, - ACTIONS(1585), 2, + ACTIONS(1596), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(47), 4, + ACTIONS(1575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(43), 5, + ACTIONS(1560), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 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(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50016,7 +51146,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(425), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50025,67 +51155,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, + [4082] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, - sym_identifier, - ACTIONS(1495), 1, - aux_sym_preproc_if_token2, - ACTIONS(1506), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(1509), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1512), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1521), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(1524), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(1527), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(1530), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1591), 1, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1425), 1, + sym_identifier, + ACTIONS(1604), 1, aux_sym_preproc_def_token1, - ACTIONS(1594), 1, + ACTIONS(1606), 1, aux_sym_preproc_if_token1, - ACTIONS(1600), 1, + ACTIONS(1610), 1, sym_preproc_directive, - STATE(700), 1, + ACTIONS(1612), 1, + anon_sym_RBRACE, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1017), 1, + STATE(1025), 1, sym__declaration_specifiers, - ACTIONS(1597), 2, + ACTIONS(1608), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1518), 4, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1503), 5, + ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1515), 6, + ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50093,7 +51223,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(425), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50102,67 +51232,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, - [4210] = 23, + [4182] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(1506), 1, + ACTIONS(1552), 1, + aux_sym_preproc_if_token2, + 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(1614), 1, aux_sym_preproc_def_token1, - ACTIONS(1606), 1, + ACTIONS(1617), 1, aux_sym_preproc_if_token1, - ACTIONS(1612), 1, + ACTIONS(1623), 1, sym_preproc_directive, - ACTIONS(1615), 1, - anon_sym_RBRACE, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1027), 1, sym__declaration_specifiers, - ACTIONS(1609), 2, + ACTIONS(1620), 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(910), 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(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50170,7 +51300,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(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50179,7 +51309,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, + [4282] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50194,25 +51324,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(1425), 1, sym_identifier, - ACTIONS(1617), 1, + ACTIONS(1626), 1, aux_sym_preproc_def_token1, - ACTIONS(1619), 1, + ACTIONS(1628), 1, aux_sym_preproc_if_token1, - ACTIONS(1623), 1, + ACTIONS(1630), 1, + aux_sym_preproc_if_token2, + ACTIONS(1634), 1, sym_preproc_directive, - ACTIONS(1625), 1, - anon_sym_RBRACE, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1027), 1, sym__declaration_specifiers, - ACTIONS(1621), 2, + ACTIONS(1632), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50226,7 +51356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50239,7 +51369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50247,7 +51377,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(427), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -50256,7 +51386,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, + [4382] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50271,25 +51401,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(1425), 1, sym_identifier, - ACTIONS(1617), 1, + ACTIONS(1604), 1, aux_sym_preproc_def_token1, - ACTIONS(1619), 1, + ACTIONS(1606), 1, aux_sym_preproc_if_token1, - ACTIONS(1623), 1, + ACTIONS(1610), 1, sym_preproc_directive, - ACTIONS(1627), 1, + ACTIONS(1636), 1, anon_sym_RBRACE, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1016), 1, + STATE(1025), 1, sym__declaration_specifiers, - ACTIONS(1621), 2, + ACTIONS(1608), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, @@ -50303,7 +51433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50316,7 +51446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50324,7 +51454,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,86 +51463,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, - 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(1404), 1, - anon_sym_LBRACK, - ACTIONS(1406), 1, - sym_identifier, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_STAR, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, - sym__declaration_specifiers, - STATE(1127), 1, - sym_parameter_list, - STATE(1151), 1, - sym__abstract_declarator, - STATE(1226), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(47), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1131), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - 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, - [4615] = 21, + [4482] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50427,24 +51478,27 @@ 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(1425), 1, sym_identifier, - ACTIONS(1633), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_ms_call_modifier, - STATE(700), 1, + ACTIONS(1626), 1, + aux_sym_preproc_def_token1, + ACTIONS(1628), 1, + aux_sym_preproc_if_token1, + ACTIONS(1634), 1, + sym_preproc_directive, + ACTIONS(1638), 1, + aux_sym_preproc_if_token2, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, STATE(1027), 1, sym__declaration_specifiers, - STATE(359), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + ACTIONS(1632), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, @@ -50456,19 +51510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -50476,7 +51523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50484,7 +51531,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4708] = 21, + STATE(428), 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, + [4582] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50499,48 +51555,55 @@ 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(1405), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(1415), 1, + anon_sym_LBRACK, + ACTIONS(1425), 1, sym_identifier, - ACTIONS(1635), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_ms_call_modifier, - STATE(700), 1, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + anon_sym_STAR, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1021), 1, + STATE(938), 1, sym__declaration_specifiers, - STATE(113), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, + STATE(1166), 1, + sym_parameter_list, + STATE(1186), 1, + sym__abstract_declarator, + STATE(1233), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, ACTIONS(43), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, ACTIONS(45), 6, anon_sym_const, anon_sym_volatile, @@ -50548,7 +51611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50556,75 +51619,161 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [4801] = 5, + [4687] = 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__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1644), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1641), 5, + STATE(804), 1, + sym__expression, + STATE(1460), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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, - ACTIONS(1639), 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(1637), 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, + STATE(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4778] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1646), 1, + anon_sym_SEMI, + STATE(442), 1, + sym_string_literal, + STATE(813), 1, + sym__expression, + STATE(1406), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - [4862] = 5, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [4869] = 5, ACTIONS(3), 1, sym_comment, - STATE(438), 2, + STATE(434), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(89), 5, + ACTIONS(1652), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1456), 13, + ACTIONS(1650), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -50638,7 +51787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1450), 29, + ACTIONS(1648), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -50668,7 +51817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [4923] = 21, + [4930] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -50683,21 +51832,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(1425), 1, sym_identifier, - ACTIONS(1644), 1, + ACTIONS(1655), 1, anon_sym_LBRACE, - STATE(636), 1, + STATE(639), 1, sym_ms_call_modifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1026), 1, + STATE(1028), 1, sym__declaration_specifiers, - STATE(270), 3, + STATE(361), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -50712,7 +51861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -50732,7 +51881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -50740,239 +51889,291 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [5016] = 21, + [5023] = 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(1406), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym_ms_call_modifier, - STATE(700), 1, - sym__type_specifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1019), 1, - sym__declaration_specifiers, - STATE(349), 3, - sym_function_definition, - sym_declaration, - sym_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(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - 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, - [5109] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(434), 2, + ACTIONS(1657), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, + STATE(820), 1, + sym__expression, + STATE(1435), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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, - ACTIONS(1650), 13, - anon_sym_DASH, - anon_sym_PLUS, + STATE(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5114] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(886), 1, + sym_identifier, + ACTIONS(890), 1, + anon_sym_LPAREN2, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(904), 1, + anon_sym_sizeof, + STATE(442), 1, + sym_string_literal, + STATE(617), 1, + sym__expression, + STATE(624), 1, + sym_initializer_list, + 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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, - 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(610), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5205] = 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__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_RPAREN, + STATE(442), 1, + sym_string_literal, + STATE(822), 1, + sym__expression, + STATE(1433), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5296] = 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__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + ACTIONS(1661), 1, + anon_sym_RPAREN, + STATE(442), 1, + sym_string_literal, + STATE(797), 1, + sym__expression, + STATE(1432), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [5387] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -50981,17 +52182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1660), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1663), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(804), 1, + STATE(781), 1, sym__expression, - STATE(1383), 1, + STATE(1475), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51005,29 +52206,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51036,10 +52240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5366] = 19, + [5478] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51048,17 +52253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1662), 1, + ACTIONS(1665), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(805), 1, + STATE(798), 1, sym__expression, - STATE(1334), 1, + STATE(1429), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51072,29 +52277,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51103,10 +52311,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5452] = 19, + [5569] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(467), 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(1521), 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(1515), 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, + [5630] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51115,18 +52380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1664), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(791), 1, + STATE(817), 1, sym__expression, - STATE(1305), 1, - sym_comma_expression, + STATE(1295), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -51139,29 +52404,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51170,10 +52438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5538] = 19, + [5721] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51182,17 +52451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1666), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1667), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(792), 1, + STATE(796), 1, sym__expression, - STATE(1303), 1, + STATE(1345), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51206,29 +52475,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51237,10 +52509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5624] = 19, + [5812] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51249,17 +52522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1668), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(793), 1, + STATE(814), 1, sym__expression, - STATE(1299), 1, + STATE(1446), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51273,29 +52546,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51304,65 +52580,69 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5710] = 19, + [5903] = 20, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1670), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(795), 1, + STATE(624), 1, + sym_initializer_list, + STATE(659), 1, sym__expression, - STATE(1296), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51371,10 +52651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5796] = 19, + [5994] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51383,17 +52664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1672), 1, + ACTIONS(1671), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(759), 1, + STATE(789), 1, sym__expression, - STATE(1475), 1, + STATE(1540), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51407,29 +52688,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51438,10 +52722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5882] = 19, + [6085] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51450,18 +52735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1673), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(761), 1, + STATE(808), 1, sym__expression, - STATE(1238), 1, - sym_initializer_list, + STATE(1361), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -51474,29 +52759,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51505,10 +52793,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [5968] = 19, + [6176] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51517,17 +52806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1674), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1675), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(787), 1, + STATE(809), 1, sym__expression, - STATE(1377), 1, + STATE(1449), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51541,29 +52830,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51572,10 +52864,83 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6054] = 19, + [6267] = 21, + 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(1425), 1, + sym_identifier, + ACTIONS(1677), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_ms_call_modifier, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1033), 1, + sym__declaration_specifiers, + STATE(321), 3, + sym_function_definition, + sym_declaration, + sym_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(910), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(665), 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, + [6360] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51584,17 +52949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1676), 1, + ACTIONS(1679), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(797), 1, + STATE(787), 1, sym__expression, - STATE(1394), 1, + STATE(1367), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51608,29 +52973,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51639,10 +53007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6140] = 19, + [6451] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51651,17 +53020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1678), 1, + ACTIONS(1681), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(796), 1, + STATE(775), 1, sym__expression, - STATE(1312), 1, + STATE(1495), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51675,29 +53044,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51706,10 +53078,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6226] = 19, + [6542] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51718,17 +53091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1680), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1683), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(800), 1, + STATE(802), 1, sym__expression, - STATE(1329), 1, + STATE(1403), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51742,29 +53115,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51773,10 +53149,83 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6312] = 19, + [6633] = 21, + 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(1425), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_ms_call_modifier, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1032), 1, + sym__declaration_specifiers, + STATE(122), 3, + sym_function_definition, + sym_declaration, + sym_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(910), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(665), 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, + [6726] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51785,17 +53234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1682), 1, + ACTIONS(1687), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(785), 1, + STATE(780), 1, sym__expression, - STATE(1412), 1, + STATE(1478), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51809,29 +53258,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51840,10 +53292,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6398] = 19, + [6817] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51852,17 +53305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1684), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1689), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(783), 1, + STATE(805), 1, sym__expression, - STATE(1413), 1, + STATE(1458), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51876,29 +53329,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51907,10 +53363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6484] = 19, + [6908] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51919,17 +53376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1686), 1, + ACTIONS(1691), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(798), 1, + STATE(807), 1, sym__expression, - STATE(1393), 1, + STATE(1456), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -51943,29 +53400,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -51974,10 +53434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6570] = 19, + [6999] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -51986,17 +53447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1688), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(803), 1, + STATE(816), 1, sym__expression, - STATE(1388), 1, + STATE(1365), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52010,29 +53471,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52041,10 +53505,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6656] = 19, + [7090] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52053,17 +53518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1695), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(782), 1, + STATE(819), 1, sym__expression, - STATE(1416), 1, + STATE(1354), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52077,29 +53542,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52108,10 +53576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6742] = 19, + [7181] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52120,17 +53589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1692), 1, + ACTIONS(1697), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(786), 1, + STATE(774), 1, sym__expression, - STATE(1386), 1, + STATE(1497), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52144,29 +53613,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52175,10 +53647,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6828] = 19, + [7272] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52187,17 +53660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1694), 1, + ACTIONS(1699), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(806), 1, + STATE(815), 1, sym__expression, - STATE(1381), 1, + STATE(1366), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52211,29 +53684,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52242,10 +53718,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [6914] = 19, + [7363] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52254,17 +53731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1696), 1, + ACTIONS(1701), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(781), 1, + STATE(794), 1, sym__expression, - STATE(1418), 1, + STATE(1352), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52278,29 +53755,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52309,10 +53789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7000] = 19, + [7454] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52321,17 +53802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1698), 1, + ACTIONS(1703), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(779), 1, + STATE(782), 1, sym__expression, - STATE(1421), 1, + STATE(1473), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52345,29 +53826,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52376,10 +53860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7086] = 19, + [7545] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52388,17 +53873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1700), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1705), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(772), 1, + STATE(812), 1, sym__expression, - STATE(1438), 1, + STATE(1368), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52412,29 +53897,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52443,10 +53931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7172] = 19, + [7636] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52455,18 +53944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1702), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(801), 1, + STATE(617), 1, sym__expression, - STATE(1333), 1, - sym_comma_expression, + STATE(624), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52479,29 +53968,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52510,10 +54002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7258] = 19, + [7727] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52522,17 +54015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1704), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1707), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(756), 1, + STATE(779), 1, sym__expression, - STATE(1307), 1, + STATE(1489), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52546,29 +54039,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52577,77 +54073,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7344] = 19, + [7818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, - anon_sym_sizeof, - STATE(435), 1, + STATE(434), 2, sym_string_literal, - STATE(617), 1, - sym_initializer_list, - STATE(649), 1, - sym__expression, - ACTIONS(1126), 2, - 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_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, + 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, - 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(1711), 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(1709), 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, + [7879] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52656,18 +54142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(605), 1, + STATE(792), 1, sym__expression, - STATE(617), 1, - sym_initializer_list, + STATE(1356), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -52680,29 +54166,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52711,10 +54200,83 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7516] = 19, + [7970] = 21, + 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(1425), 1, + sym_identifier, + ACTIONS(1715), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_ms_call_modifier, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1036), 1, + sym__declaration_specifiers, + STATE(325), 3, + sym_function_definition, + sym_declaration, + sym_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(910), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(45), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + STATE(665), 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, + [8063] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52723,17 +54285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1706), 1, + ACTIONS(1717), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(809), 1, + STATE(806), 1, sym__expression, - STATE(1338), 1, + STATE(1380), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52747,29 +54309,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52778,10 +54343,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7602] = 19, + [8154] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52790,17 +54356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1708), 1, + ACTIONS(1719), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(771), 1, + STATE(773), 1, sym__expression, - STATE(1440), 1, + STATE(1500), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52814,29 +54380,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52845,10 +54414,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7688] = 19, + [8245] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52857,17 +54427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1710), 1, + ACTIONS(1721), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(790), 1, + STATE(799), 1, sym__expression, - STATE(1310), 1, + STATE(1381), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52881,29 +54451,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52912,10 +54485,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7774] = 19, + [8336] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52924,17 +54498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1712), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1723), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(770), 1, + STATE(767), 1, sym__expression, - STATE(1443), 1, + STATE(1468), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -52948,29 +54522,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -52979,10 +54556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7860] = 19, + [8427] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -52991,17 +54569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1714), 1, + ACTIONS(1725), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(757), 1, + STATE(800), 1, sym__expression, - STATE(1345), 1, + STATE(1404), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53015,29 +54593,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53046,10 +54627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [7946] = 19, + [8518] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53058,17 +54640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1716), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1727), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(812), 1, + STATE(784), 1, sym__expression, - STATE(1346), 1, + STATE(1434), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53082,29 +54664,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53113,10 +54698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8032] = 19, + [8609] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53125,17 +54711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1718), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(776), 1, + STATE(791), 1, sym__expression, - STATE(1427), 1, + STATE(1360), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53149,29 +54735,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53180,10 +54769,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8118] = 19, + [8700] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53192,18 +54782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1720), 1, - anon_sym_SEMI, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(762), 1, + STATE(795), 1, sym__expression, - STATE(1453), 1, - sym_comma_expression, + STATE(1327), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53216,29 +54806,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53247,10 +54840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8204] = 19, + [8791] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53259,17 +54853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1722), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1731), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(802), 1, + STATE(803), 1, sym__expression, - STATE(1389), 1, + STATE(1496), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53283,29 +54877,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53314,10 +54911,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8290] = 19, + [8882] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53326,18 +54924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1733), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(777), 1, + STATE(786), 1, sym__expression, - STATE(1234), 1, - sym_initializer_list, + STATE(1428), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53350,29 +54948,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53381,65 +54982,69 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8376] = 19, + [8973] = 20, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(900), 1, + anon_sym_LBRACE, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1724), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(784), 1, + STATE(624), 1, + sym_initializer_list, + STATE(659), 1, sym__expression, - STATE(1468), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53448,10 +55053,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8462] = 19, + [9064] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53460,17 +55066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1726), 1, + ACTIONS(1735), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(763), 1, + STATE(788), 1, sym__expression, - STATE(1452), 1, + STATE(1364), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53484,29 +55090,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53515,10 +55124,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8548] = 19, + [9155] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53527,17 +55137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1728), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1737), 1, + anon_sym_SEMI, + STATE(442), 1, sym_string_literal, - STATE(778), 1, + STATE(785), 1, sym__expression, - STATE(1470), 1, + STATE(1430), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53551,29 +55161,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53582,10 +55195,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8634] = 19, + [9246] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53594,17 +55208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1730), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1739), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(789), 1, + STATE(793), 1, sym__expression, - STATE(1371), 1, + STATE(1353), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53618,29 +55232,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53649,10 +55266,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8720] = 19, + [9337] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53661,17 +55279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1732), 1, + ACTIONS(1741), 1, anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(775), 1, + STATE(790), 1, sym__expression, - STATE(1471), 1, + STATE(1362), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -53685,29 +55303,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53716,10 +55337,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8806] = 19, + [9428] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -53728,18 +55350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1734), 1, - anon_sym_SEMI, - STATE(435), 1, + ACTIONS(1743), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(810), 1, + STATE(716), 1, sym__expression, - STATE(1364), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -53752,29 +55372,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53783,132 +55406,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [8892] = 19, + [9516] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(896), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1745), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(605), 1, + STATE(649), 1, sym__expression, - STATE(617), 1, - sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 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(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, - [8978] = 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(1736), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_string_literal, - STATE(811), 1, - sym__expression, - STATE(1373), 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, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53917,65 +55475,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9064] = 19, + [9604] = 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1738), 1, - anon_sym_RPAREN, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + ACTIONS(1747), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(764), 1, + STATE(649), 1, sym__expression, - STATE(1450), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -53984,65 +55544,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9150] = 19, + [9692] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(892), 1, - anon_sym_LBRACE, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1749), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(617), 1, - sym_initializer_list, STATE(649), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54051,63 +55613,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9236] = 18, + [9780] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - ACTIONS(1740), 1, + ACTIONS(1751), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(649), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54116,63 +55682,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9319] = 18, + [9868] = 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, + 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(1742), 1, - anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(772), 1, sym__expression, - ACTIONS(1126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1128), 2, + STATE(1507), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54181,63 +55751,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9402] = 18, + [9956] = 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1744), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + ACTIONS(1753), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(837), 1, + STATE(649), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54246,63 +55820,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9485] = 18, + [10044] = 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1746), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + ACTIONS(1755), 1, + anon_sym_RBRACK, + STATE(442), 1, sym_string_literal, - STATE(835), 1, + STATE(649), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54311,63 +55889,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9568] = 18, + [10132] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - ACTIONS(1748), 1, + ACTIONS(1757), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(649), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54376,10 +55958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9651] = 18, + [10220] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54388,16 +55971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1750), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(755), 1, + STATE(726), 1, sym__expression, + STATE(1317), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54410,29 +55993,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54441,10 +56027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9734] = 18, + [10308] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54453,15 +56040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1752), 1, - anon_sym_COLON, - STATE(435), 1, + ACTIONS(1759), 1, + anon_sym_RPAREN, + STATE(442), 1, sym_string_literal, - STATE(852), 1, + STATE(724), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -54475,29 +56062,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54506,10 +56096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9817] = 18, + [10396] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54518,16 +56109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1761), 1, + anon_sym_COLON, + STATE(442), 1, sym_string_literal, - STATE(774), 1, + STATE(849), 1, sym__expression, - STATE(1430), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54540,29 +56131,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54571,10 +56165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9900] = 18, + [10484] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54583,16 +56178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1763), 1, + anon_sym_COLON, + STATE(442), 1, sym_string_literal, - STATE(780), 1, + STATE(831), 1, sym__expression, - STATE(1419), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54605,29 +56200,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54636,10 +56234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [9983] = 18, + [10572] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54648,16 +56247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1765), 1, + anon_sym_COLON, + STATE(442), 1, sym_string_literal, - STATE(746), 1, + STATE(868), 1, sym__expression, - STATE(1270), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54670,29 +56269,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54701,10 +56303,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10066] = 18, + [10660] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -54713,16 +56316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1754), 1, - anon_sym_RPAREN, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(732), 1, + STATE(776), 1, sym__expression, + STATE(1505), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -54735,94 +56338,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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, - [10149] = 18, - 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(1756), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(631), 1, - sym__expression, - ACTIONS(1126), 2, - 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_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, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -54831,193 +56372,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10232] = 18, + [10748] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - ACTIONS(1758), 1, + ACTIONS(1767), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(649), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, 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_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, - [10315] = 18, - 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(1760), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(631), 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(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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, - [10398] = 18, - 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(1762), 1, - anon_sym_RBRACK, - STATE(435), 1, - sym_string_literal, - STATE(631), 1, - sym__expression, - ACTIONS(1126), 2, - 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_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, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55026,63 +56441,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10481] = 18, + [10836] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - ACTIONS(1764), 1, + ACTIONS(1769), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(649), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55091,63 +56510,67 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10564] = 18, + [10924] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - ACTIONS(1766), 1, + ACTIONS(1771), 1, anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(649), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55156,10 +56579,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10647] = 18, + [11012] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55168,15 +56592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1768), 1, + ACTIONS(1773), 1, anon_sym_COLON, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(848), 1, + STATE(826), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55190,29 +56614,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55221,63 +56648,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10730] = 18, + [11100] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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, - ACTIONS(1770), 1, - anon_sym_RBRACK, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(622), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55286,61 +56715,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10813] = 17, + [11185] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(767), 1, + STATE(589), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55349,61 +56782,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10893] = 17, + [11270] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(815), 1, + STATE(848), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55412,61 +56849,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [10973] = 17, + [11355] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1381), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55475,61 +56916,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11053] = 17, + [11440] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(814), 1, + STATE(847), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55538,10 +56983,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11133] = 17, + [11525] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -55550,13 +56996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(609), 1, + STATE(621), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55570,29 +57016,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55601,25 +57050,26 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11213] = 17, + [11610] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1772), 1, + ACTIONS(1775), 1, anon_sym_LPAREN2, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(682), 1, + STATE(698), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -55633,29 +57083,99 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [11695] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1367), 1, + sym_identifier, + STATE(442), 1, + sym_string_literal, + STATE(585), 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, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55664,61 +57184,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11293] = 17, + [11780] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1378), 1, - anon_sym_sizeof, - ACTIONS(1774), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - STATE(435), 1, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(840), 1, + STATE(649), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55727,61 +57251,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11373] = 17, + [11865] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(632), 1, + STATE(647), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55790,61 +57318,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11453] = 17, + [11950] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1124), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(631), 1, + STATE(656), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55853,61 +57385,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11533] = 17, + [12035] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(637), 1, + STATE(654), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55916,61 +57452,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11613] = 17, + [12120] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(586), 1, + STATE(661), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -55979,61 +57519,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11693] = 17, + [12205] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(587), 1, + STATE(863), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1381), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56042,61 +57586,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11773] = 17, + [12290] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(588), 1, + STATE(830), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1381), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56105,10 +57653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11853] = 17, + [12375] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56117,13 +57666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(690), 1, + STATE(696), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56137,29 +57686,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56168,61 +57720,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [11933] = 17, + [12460] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(590), 1, + STATE(625), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56231,61 +57787,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12013] = 17, + [12545] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(593), 1, + STATE(690), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56294,61 +57854,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12093] = 17, + [12630] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(597), 1, + STATE(660), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56357,61 +57921,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12173] = 17, + [12715] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(598), 1, + STATE(687), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56420,61 +57988,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12253] = 17, + [12800] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(600), 1, + STATE(685), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56483,61 +58055,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12333] = 17, + [12885] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(610), 1, + STATE(684), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56546,61 +58122,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12413] = 17, + [12970] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(602), 1, + STATE(865), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56609,10 +58189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12493] = 17, + [13055] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56621,13 +58202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(829), 1, + STATE(845), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56641,29 +58222,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56672,116 +58256,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12573] = 9, + [13140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1452), 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, - 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [12637] = 17, - 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1138), 1, + anon_sym_sizeof, + ACTIONS(1777), 1, + anon_sym_LPAREN2, + STATE(442), 1, sym_string_literal, - STATE(827), 1, + STATE(653), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56790,10 +58323,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12717] = 17, + [13225] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -56802,13 +58336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(821), 1, + STATE(683), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -56822,29 +58356,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56853,61 +58390,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12797] = 17, + [13310] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1367), 1, sym_identifier, - ACTIONS(1134), 1, - anon_sym_sizeof, - ACTIONS(1776), 1, - anon_sym_LPAREN2, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(650), 1, + STATE(692), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56916,61 +58457,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12877] = 17, + [13395] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(633), 1, + STATE(810), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -56979,61 +58524,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [12957] = 17, + [13480] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(632), 1, + STATE(597), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57042,61 +58591,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13037] = 17, + [13565] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(637), 1, + STATE(766), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57105,61 +58658,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13117] = 17, + [13650] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(794), 1, + STATE(584), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57168,61 +58725,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13197] = 17, + [13735] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(629), 1, + STATE(595), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57231,10 +58792,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13277] = 17, + [13820] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57243,13 +58805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(760), 1, + STATE(678), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57263,29 +58825,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57294,61 +58859,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13357] = 17, + [13905] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(638), 1, + STATE(592), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57357,61 +58926,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13437] = 17, + [13990] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(646), 1, + STATE(594), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57420,10 +58993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13517] = 17, + [14075] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57432,13 +59006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(666), 1, + STATE(622), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57452,29 +59026,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57483,61 +59060,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13597] = 17, + [14160] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(647), 1, + STATE(850), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57546,61 +59127,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13677] = 17, + [14245] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(630), 1, + STATE(591), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57609,61 +59194,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13757] = 17, + [14330] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(819), 1, + STATE(590), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57672,61 +59261,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13837] = 17, + [14415] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1124), 1, - anon_sym_LPAREN2, - ACTIONS(1134), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + STATE(442), 1, sym_string_literal, - STATE(634), 1, + STATE(832), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1128), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1132), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 3, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57735,61 +59328,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13917] = 17, + [14500] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(635), 1, + STATE(588), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57798,61 +59395,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [13997] = 17, + [14585] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(844), 1, + STATE(587), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57861,10 +59462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14077] = 17, + [14670] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -57873,13 +59475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(683), 1, + STATE(689), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -57893,29 +59495,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57924,61 +59529,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14157] = 17, + [14755] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(619), 1, + STATE(657), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -57987,61 +59596,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14237] = 17, + [14840] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(639), 1, + STATE(621), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58050,61 +59663,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14317] = 17, + [14925] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(640), 1, + STATE(778), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58113,61 +59730,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14397] = 17, + [15010] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(643), 1, + STATE(586), 1, sym__expression, - ACTIONS(1126), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58176,61 +59797,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14477] = 17, + [15095] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(591), 1, + STATE(853), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1381), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58239,61 +59864,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14557] = 17, + [15180] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(644), 1, + STATE(751), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58302,61 +59931,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14637] = 17, + [15265] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(825), 1, + STATE(646), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58365,124 +59998,117 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14717] = 17, + [15350] = 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(854), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1783), 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(1781), 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, - [14797] = 17, + [15405] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(609), 1, + STATE(647), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58491,61 +60117,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14877] = 17, + [15490] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(691), 1, + STATE(658), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58554,61 +60184,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [14957] = 17, + [15575] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(672), 1, + STATE(837), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58617,61 +60251,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15037] = 17, + [15660] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(610), 1, + STATE(835), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58680,61 +60318,132 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15117] = 17, + [15745] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(684), 1, + STATE(642), 1, sym__expression, - ACTIONS(21), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1136), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1381), 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(610), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(627), 12, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + [15830] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(87), 1, + sym_number_literal, + ACTIONS(1373), 1, + sym_identifier, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, + sym_string_literal, + STATE(642), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58743,10 +60452,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15197] = 17, + [15915] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -58755,13 +60465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(686), 1, + STATE(827), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -58775,29 +60485,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58806,61 +60519,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15277] = 17, + [16000] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(859), 1, + STATE(643), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58869,61 +60586,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15357] = 17, + [16085] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + 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(442), 1, sym_string_literal, - STATE(858), 1, + STATE(585), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58932,61 +60653,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15437] = 17, + [16170] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(633), 1, + STATE(839), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -58995,61 +60720,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15517] = 17, + [16255] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(856), 1, + STATE(852), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59058,61 +60787,117 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15597] = 17, + [16340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 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(1785), 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, + [16395] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(853), 1, + STATE(859), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59121,61 +60906,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15677] = 17, + [16480] = 18, 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, + 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(442), 1, sym_string_literal, - STATE(847), 1, + STATE(706), 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(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59184,61 +60973,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15757] = 17, + [16565] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(896), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(608), 1, + STATE(840), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1381), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59247,61 +61040,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15837] = 17, + [16650] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1375), 1, + anon_sym_LPAREN2, + ACTIONS(1385), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(665), 1, + STATE(841), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59310,124 +61107,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [15917] = 17, + [16735] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1373), 1, sym_identifier, - STATE(435), 1, - sym_string_literal, - STATE(694), 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, - 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, - [15997] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(85), 1, - sym_number_literal, - ACTIONS(1356), 1, - sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(693), 1, + STATE(842), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1379), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59436,61 +61174,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16077] = 17, + [16820] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(813), 1, + STATE(843), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59499,61 +61241,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16157] = 17, + [16905] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1375), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1385), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(843), 1, + STATE(846), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1379), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, + ACTIONS(1381), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1383), 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(666), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59562,61 +61308,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16237] = 17, + [16990] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, - anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(904), 1, anon_sym_sizeof, - STATE(435), 1, + ACTIONS(1789), 1, + anon_sym_LPAREN2, + STATE(442), 1, sym_string_literal, - STATE(842), 1, + STATE(605), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59625,61 +61375,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16317] = 17, + [17075] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(838), 1, + STATE(641), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59688,61 +61442,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16397] = 17, + [17160] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1366), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - ACTIONS(1378), 1, + ACTIONS(1138), 1, anon_sym_sizeof, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(836), 1, + STATE(650), 1, sym__expression, - ACTIONS(1370), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1372), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59751,61 +61509,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16477] = 17, + [17245] = 18, 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, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(886), 1, sym_identifier, - STATE(435), 1, + ACTIONS(1128), 1, + anon_sym_LPAREN2, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(591), 1, + STATE(651), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(1132), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59814,10 +61576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16557] = 17, + [17330] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59826,13 +61589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(687), 1, + STATE(867), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59846,29 +61609,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59877,61 +61643,65 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16637] = 17, + [17415] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(878), 1, + ACTIONS(886), 1, sym_identifier, - ACTIONS(896), 1, - anon_sym_sizeof, - ACTIONS(1778), 1, + ACTIONS(1128), 1, anon_sym_LPAREN2, - STATE(435), 1, + ACTIONS(1138), 1, + anon_sym_sizeof, + STATE(442), 1, sym_string_literal, - STATE(584), 1, + STATE(640), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(884), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1130), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(886), 2, + ACTIONS(1132), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(894), 2, + ACTIONS(1136), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(1381), 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(610), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -59940,10 +61710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16717] = 17, + [17500] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -59952,13 +61723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(710), 1, + STATE(673), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -59972,92 +61743,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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, - [16797] = 17, - 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, - anon_sym_LPAREN2, - ACTIONS(1378), 1, - anon_sym_sizeof, - STATE(435), 1, - sym_string_literal, - STATE(831), 1, - sym__expression, - ACTIONS(1370), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1372), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1374), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1376), 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(654), 5, + STATE(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60066,10 +61777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16877] = 17, + [17585] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60078,13 +61790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(85), 1, + ACTIONS(87), 1, sym_number_literal, - ACTIONS(1356), 1, + ACTIONS(1367), 1, sym_identifier, - STATE(435), 1, + STATE(442), 1, sym_string_literal, - STATE(668), 1, + STATE(682), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60098,29 +61810,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 3, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + 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(633), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(618), 11, + STATE(627), 12, sym_conditional_expression, sym_assignment_expression, sym_unary_expression, @@ -60129,13 +61844,69 @@ static const uint16_t ts_small_parse_table[] = { sym_cast_expression, sym_sizeof_expression, sym_generic_expression, + sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, - [16957] = 3, + [17670] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN2, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1534), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1526), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(1532), 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(1521), 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(1515), 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, + [17734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 13, + ACTIONS(1793), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60149,7 +61920,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,39 +61951,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17008] = 11, + [17785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1790), 3, + ACTIONS(1799), 13, + anon_sym_DASH, + anon_sym_PLUS, 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), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60235,10 +62003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17074] = 3, + [17845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1809), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60252,10 +62032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1802), 29, + ACTIONS(1807), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -60263,9 +62042,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 +62055,29 @@ 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, + [17905] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1788), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1790), 3, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 8, + ACTIONS(1817), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -60313,7 +62086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1811), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60336,39 +62109,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17188] = 11, + [17969] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1790), 3, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(1817), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1811), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60391,43 +62164,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17254] = 13, + [18035] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1823), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1790), 3, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 4, + ACTIONS(1817), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1806), 20, + ACTIONS(1811), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60448,93 +62221,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17324] = 3, + [18105] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 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(1814), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1797), 1, 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_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(1801), 1, anon_sym_LBRACK, - 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, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - [17374] = 14, - 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(1813), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, + ACTIONS(1819), 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(1810), 2, + ACTIONS(1821), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1823), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, + ACTIONS(1825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 4, + ACTIONS(1817), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1811), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -60553,41 +62279,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17446] = 7, + [18177] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + ACTIONS(1827), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1800), 2, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1822), 13, + ACTIONS(1813), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1817), 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(1820), 24, + ACTIONS(1811), 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, @@ -60602,46 +62338,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, - [17504] = 8, + [18251] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1829), 1, + anon_sym_CARET, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1826), 13, + ACTIONS(1813), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1817), 2, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_EQ, + ACTIONS(1819), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1824), 22, + ACTIONS(1821), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1811), 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, @@ -60656,55 +62398,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17564] = 15, + [18327] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_AMP, - STATE(595), 1, + ACTIONS(1829), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1839), 1, + anon_sym_EQ, + ACTIONS(1841), 1, + anon_sym_QMARK, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1823), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, + ACTIONS(1825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1831), 15, 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, @@ -60715,10 +62462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17638] = 3, + [18411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 13, + ACTIONS(1845), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60732,7 +62479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1830), 29, + ACTIONS(1843), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60762,37 +62509,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17688] = 3, + [18461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 13, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1817), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1829), 1, + anon_sym_CARET, + ACTIONS(1837), 1, + anon_sym_PIPE, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1813), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 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(1834), 29, + ACTIONS(1811), 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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -60805,14 +62570,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [18539] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1817), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_AMP, + ACTIONS(1829), 1, + anon_sym_CARET, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_PIPE, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - [17738] = 3, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1811), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + 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, + [18619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 13, + ACTIONS(1849), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60826,7 +62649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1838), 29, + ACTIONS(1847), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -60856,113 +62679,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17788] = 16, + [18669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1828), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - STATE(595), 1, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 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(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 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, - 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, - [17864] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 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, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1817), 10, 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(1810), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1806), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(1811), 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 +62732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17942] = 3, + [18731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1848), 13, + ACTIONS(1853), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -60994,7 +62749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1846), 29, + ACTIONS(1851), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61024,54 +62779,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [17992] = 18, + [18781] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_EQ, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1829), 1, anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1850), 1, + ACTIONS(1833), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1835), 1, anon_sym_AMP_AMP, - STATE(595), 1, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1857), 1, + anon_sym_EQ, + STATE(629), 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(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1810), 2, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1812), 2, + ACTIONS(1823), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1818), 2, + ACTIONS(1825), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1790), 3, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 17, + ACTIONS(1855), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, @@ -61086,10 +62842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18072] = 3, + [18863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 13, + ACTIONS(1861), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61103,7 +62859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1450), 29, + ACTIONS(1859), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61133,28 +62889,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18122] = 9, + [18913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1369), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1371), 21, anon_sym_LPAREN2, - ACTIONS(1796), 1, - anon_sym_LBRACK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1798), 2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1790), 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [18963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 13, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -61163,9 +62953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1863), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61174,6 +62965,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, @@ -61186,74 +62979,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18184] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19013] = 3, 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, + ACTIONS(1791), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_RPAREN, - ACTIONS(1406), 1, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1793), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + sym_null, 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, + [19063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1854), 13, + ACTIONS(1869), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61267,7 +63047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1852), 29, + ACTIONS(1867), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61297,36 +63077,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18318] = 8, + [19113] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1858), 13, + ACTIONS(1813), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1815), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1873), 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(1856), 22, + ACTIONS(1871), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -61349,10 +63132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18378] = 3, + [19179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 13, + ACTIONS(1877), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61366,7 +63149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1860), 29, + ACTIONS(1875), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61396,10 +63179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18428] = 3, + [19229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 13, + ACTIONS(1881), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61413,7 +63196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1864), 29, + ACTIONS(1879), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61443,60 +63226,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18478] = 20, + [19279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 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, - anon_sym_PIPE_PIPE, - ACTIONS(1872), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_QMARK, - STATE(595), 1, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1885), 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(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, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1868), 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(1883), 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, @@ -61507,22 +63269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18562] = 8, - 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(1878), 13, + [19329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61536,9 +63290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1876), 22, + ACTIONS(1887), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61547,6 +63302,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, @@ -61559,22 +63316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18622] = 8, - 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(1808), 13, + [19379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1521), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61588,9 +63337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 22, + ACTIONS(1515), 29, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61599,6 +63349,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, @@ -61611,10 +63363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18682] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 13, + ACTIONS(1893), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61628,7 +63384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1880), 29, + ACTIONS(1891), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61639,9 +63395,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, @@ -61658,10 +63414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18732] = 3, + [19479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 13, + ACTIONS(1897), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61675,7 +63431,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,10 +63461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18782] = 3, + [19529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1890), 13, + ACTIONS(1901), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61722,7 +63478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1888), 29, + ACTIONS(1899), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61752,10 +63508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18832] = 3, + [19579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 13, + ACTIONS(1905), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61769,7 +63525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1892), 29, + ACTIONS(1903), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -61799,73 +63555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [18882] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 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, - anon_sym_PIPE_PIPE, - ACTIONS(1898), 1, - anon_sym_EQ, - STATE(595), 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, - 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, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1896), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [18964] = 3, + [19629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 13, + ACTIONS(1909), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61879,7 +63572,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 +63602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19014] = 3, + [19679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 13, + ACTIONS(1913), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61926,7 +63619,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 +63649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [19064] = 3, + [19729] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 13, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1917), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -61973,10 +63678,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1450), 29, + ACTIONS(1915), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -61985,8 +63689,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, @@ -61999,64 +63701,86 @@ 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, - [19114] = 20, + [19789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 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, - anon_sym_PIPE_PIPE, - ACTIONS(1874), 1, - anon_sym_QMARK, - ACTIONS(1910), 1, - anon_sym_EQ, - STATE(595), 1, - sym_argument_list, - ACTIONS(1788), 2, + ACTIONS(1387), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1794), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1798), 2, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(1389), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [19839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 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(1919), 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_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62067,7 +63791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19198] = 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [19889] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -62082,19 +63810,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(1425), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(954), 1, + STATE(938), 1, sym__declaration_specifiers, - STATE(1283), 2, + STATE(1233), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(47), 4, @@ -62108,7 +63838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -62121,7 +63851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -62129,12 +63859,45 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [19279] = 5, + [19973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1805), 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, + 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(1467), 10, + ACTIONS(1923), 24, + 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, @@ -62145,7 +63908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [20031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1817), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62158,10 +63938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 18, + anon_sym_EQ, + ACTIONS(1811), 22, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -62170,156 +63950,166 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, + [20091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 19, + ACTIONS(1929), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - anon_sym__Generic, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1360), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, 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(1927), 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_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [19380] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [20141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 19, + ACTIONS(1933), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - anon_sym__Generic, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1364), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, 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(1931), 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_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [19428] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [20191] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - anon_sym__Generic, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1780), 21, + ACTIONS(1797), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1827), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(1829), 1, + anon_sym_CARET, + ACTIONS(1833), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1835), 1, + anon_sym_AMP_AMP, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1841), 1, + anon_sym_QMARK, + ACTIONS(1937), 1, + anon_sym_EQ, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [19476] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1472), 1, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1813), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1819), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1821), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1825), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1815), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1935), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1467), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62330,7 +64120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + [20275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62343,8 +64136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + anon_sym_EQ, + ACTIONS(1939), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -62353,20 +64148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19529] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1465), 1, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(1467), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62377,7 +64163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1521), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62390,8 +64183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + anon_sym_EQ, + ACTIONS(1515), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -62400,20 +64195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19582] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1474), 1, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(1467), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62424,7 +64210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1945), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62437,8 +64230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + anon_sym_EQ, + ACTIONS(1943), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -62447,20 +64242,11 @@ 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [19635] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, - anon_sym_EQ, - ACTIONS(1476), 1, anon_sym_COLON, - ACTIONS(1467), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62471,7 +64257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1456), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1949), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62484,8 +64277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 15, + anon_sym_EQ, + ACTIONS(1947), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -62494,62 +64289,58 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19688] = 20, + [20475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1910), 1, + ACTIONS(1953), 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(1912), 1, + ACTIONS(1951), 29, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - anon_sym_CARET, - ACTIONS(1926), 1, - anon_sym_AMP, - ACTIONS(1936), 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(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(1908), 11, + 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, @@ -62560,48 +64351,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19768] = 13, - 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, + [20525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1957), 13, 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_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 16, + ACTIONS(1955), 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, @@ -62613,22 +64398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19834] = 8, - 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(1826), 13, + [20575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62642,14 +64419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1824), 18, + ACTIONS(1959), 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_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62661,22 +64445,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19890] = 8, - 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(1878), 13, + [20625] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1532), 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(1521), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62689,16 +64478,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1876), 18, + ACTIONS(1515), 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_RBRACK, + 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, + [20678] = 19, + 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(1405), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1425), 1, + sym_identifier, + STATE(710), 1, + sym__type_specifier, + STATE(765), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(938), 1, + sym__declaration_specifiers, + STATE(1336), 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(910), 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(665), 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, + [20759] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1539), 1, + anon_sym_COLON, + ACTIONS(1532), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62709,22 +64577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19946] = 8, - 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(1808), 13, + ACTIONS(1521), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -62737,16 +64590,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1515), 15, + anon_sym_COMMA, + 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1537), 1, + anon_sym_COLON, + ACTIONS(1532), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62757,50 +64624,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20002] = 14, - 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, + ACTIONS(1521), 12, 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, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(1806), 14, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1515), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20865] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(1532), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62811,51 +64671,43 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + ACTIONS(1521), 12, 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(1808), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(1916), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1806), 14, + ACTIONS(1515), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20918] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(1541), 1, + anon_sym_COLON, + ACTIONS(1532), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -62866,7 +64718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20140] = 17, + ACTIONS(1521), 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(1515), 15, + anon_sym_COMMA, + 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_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [20971] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -62881,15 +64762,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(1425), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1052), 1, + STATE(1066), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -62902,7 +64783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -62915,7 +64796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -62923,39 +64804,47 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20214] = 7, + [21045] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1800), 2, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1822), 13, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1971), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1973), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1817), 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(1820), 20, + ACTIONS(1811), 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, @@ -62968,57 +64857,55 @@ 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, + [21111] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1872), 1, + ACTIONS(1937), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(1918), 1, + ACTIONS(1975), 1, anon_sym_PIPE_PIPE, - ACTIONS(1920), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1979), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1981), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1983), 1, anon_sym_AMP, - ACTIONS(1936), 1, + ACTIONS(1987), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1971), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1868), 11, + ACTIONS(1935), 11, anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63030,50 +64917,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20348] = 16, + [21191] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(1924), 1, - anon_sym_CARET, - ACTIONS(1926), 1, - anon_sym_AMP, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(1914), 2, + ACTIONS(1817), 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(1811), 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,53 +64965,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20420] = 17, + [21247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, + ACTIONS(1839), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(1922), 1, + ACTIONS(1975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1981), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1983), 1, anon_sym_AMP, - STATE(595), 1, + ACTIONS(1987), 1, + anon_sym_QMARK, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1971), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1831), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -63143,7 +65025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20494] = 17, + [21327] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63158,15 +65040,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(1425), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1039), 1, + STATE(1065), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63179,7 +65061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63192,7 +65074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63200,7 +65082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20568] = 17, + [21401] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63215,15 +65097,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(1425), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1051), 1, + STATE(1044), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63236,7 +65118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63249,7 +65131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63257,52 +65139,148 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [20642] = 18, + [21475] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1809), 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(1807), 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, + 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, + [21531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + STATE(629), 1, + sym_argument_list, + ACTIONS(1805), 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, + 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), 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_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, + [21585] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, + ACTIONS(1857), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(1920), 1, + ACTIONS(1975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1979), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1981), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1983), 1, anon_sym_AMP, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1971), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1806), 13, - anon_sym_PIPE_PIPE, + ACTIONS(1855), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63315,28 +65293,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20718] = 9, + [21663] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1916), 3, + ACTIONS(1799), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 10, + 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), 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, + 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, + [21719] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1967), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1817), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -63345,7 +65372,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1806), 18, + ACTIONS(1811), 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, + 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, + [21779] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1973), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1967), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1817), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(1811), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63364,36 +65442,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20776] = 9, + [21841] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1996), 1, anon_sym___attribute__, - ACTIONS(1948), 1, + ACTIONS(1999), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1951), 1, + ACTIONS(2002), 1, anon_sym___declspec, - ACTIONS(1942), 5, + ACTIONS(1993), 5, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, - ACTIONS(1940), 6, + ACTIONS(1991), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - ACTIONS(1954), 6, + ACTIONS(2005), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(645), 7, + STATE(652), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63401,7 +65479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1938), 11, + ACTIONS(1989), 11, anon_sym___based, anon_sym_LBRACK, anon_sym_signed, @@ -63413,38 +65491,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [20834] = 10, + [21899] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1916), 3, + ACTIONS(1973), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 8, + ACTIONS(1873), 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(1871), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63463,39 +65542,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20894] = 11, + [21961] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(1817), 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), 18, + ACTIONS(1811), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63514,7 +65591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20956] = 17, + [22019] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63529,15 +65606,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(1425), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1036), 1, + STATE(1053), 1, sym__declaration_specifiers, ACTIONS(47), 4, anon_sym_signed, @@ -63550,7 +65627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63563,7 +65640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(655), 7, + STATE(665), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63571,42 +65648,103 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [21030] = 8, + [22093] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1858), 13, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1971), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1973), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1817), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ, + ACTIONS(1811), 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, + [22161] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + anon_sym_AMP, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1971), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(1856), 18, + ACTIONS(1967), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1811), 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, @@ -63619,39 +65757,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21086] = 11, + [22231] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - STATE(595), 1, + ACTIONS(1981), 1, + anon_sym_CARET, + ACTIONS(1983), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1817), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1934), 2, + ACTIONS(1969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1971), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1811), 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, + [22303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1917), 13, + anon_sym_DASH, + anon_sym_PLUS, 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(1915), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -63670,53 +65861,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21148] = 19, + [22359] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1898), 1, + ACTIONS(1817), 1, anon_sym_EQ, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(1918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1979), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1981), 1, anon_sym_CARET, - ACTIONS(1926), 1, + ACTIONS(1983), 1, anon_sym_AMP, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1930), 2, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1932), 2, + ACTIONS(1971), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1934), 2, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1916), 3, + ACTIONS(1985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1967), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1896), 12, + ACTIONS(1811), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63729,32 +65918,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21226] = 3, + [22433] = 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_LBRACK, + ACTIONS(1817), 1, + anon_sym_EQ, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, anon_sym_PIPE, + ACTIONS(1981), 1, anon_sym_CARET, + ACTIONS(1983), 1, anon_sym_AMP, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1969), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(1971), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1973), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(1880), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, + ACTIONS(1967), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1811), 13, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -63767,14 +65976,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, - [21271] = 3, + [22509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 13, + ACTIONS(1921), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63788,7 +65993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1802), 24, + ACTIONS(1919), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63813,23 +66018,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21316] = 5, + [22554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1957), 1, - anon_sym_EQ, - ACTIONS(1959), 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, + STATE(663), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2012), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(2008), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + sym_null, + sym_identifier, + ACTIONS(2010), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [22603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1961), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63842,7 +66078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1450), 14, + anon_sym_EQ, + ACTIONS(1959), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63853,11 +66090,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [21365] = 16, + [22648] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -63872,13 +66119,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(1425), 1, sym_identifier, - STATE(703), 1, + STATE(713), 1, sym__type_specifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(47), 4, anon_sym_signed, @@ -63891,7 +66138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -63904,7 +66151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(645), 7, + STATE(652), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -63912,10 +66159,54 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [21436] = 3, + [22719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2015), 1, + anon_sym_EQ, + ACTIONS(2017), 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(1521), 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(1515), 14, + 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, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 13, + ACTIONS(1945), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -63929,7 +66220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1814), 24, + ACTIONS(1943), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -63954,51 +66245,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21481] = 19, + [22813] = 19, ACTIONS(3), 1, sym_comment, - 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(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(1969), 1, + ACTIONS(2027), 1, anon_sym_LBRACK, - STATE(1013), 1, + STATE(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1056), 1, + STATE(1059), 1, sym__declarator, - STATE(1119), 1, + STATE(1132), 1, sym__abstract_declarator, - STATE(1127), 1, + STATE(1166), 1, sym_parameter_list, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - ACTIONS(1963), 2, + ACTIONS(2021), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(758), 2, + STATE(801), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(818), 2, + STATE(828), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(2023), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1131), 4, + STATE(1163), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -64011,52 +66302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [21557] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(658), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1975), 6, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - ACTIONS(1971), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym__Generic, - sym_true, - sym_false, - sym_null, - sym_identifier, - ACTIONS(1973), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [21604] = 3, + [22889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 14, + ACTIONS(2029), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_const, @@ -64067,11 +66316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_sizeof, anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, sym_true, sym_false, sym_null, sym_identifier, - ACTIONS(1980), 19, + ACTIONS(2031), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -64084,100 +66335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [21645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(1982), 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, - [21686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1986), 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, - [21726] = 3, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [22932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 7, + ACTIONS(2035), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(1358), 24, + ACTIONS(2033), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64202,23 +66380,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21765] = 3, + [22973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(2039), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1088), 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_LBRACE, + anon_sym_COLON, + ACTIONS(2037), 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, @@ -64238,23 +66417,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21804] = 3, + [23013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1371), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1990), 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(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, @@ -64274,112 +66453,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [21843] = 14, - 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, + [23052] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1908), 5, + ACTIONS(1855), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, - [21977] = 3, + anon_sym_QMARK, + [23123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 1, + ACTIONS(1054), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2020), 30, + ACTIONS(1052), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64410,57 +66541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22016] = 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(1808), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1806), 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, - [22073] = 3, + [23162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(2067), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2024), 30, + ACTIONS(2065), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64491,12 +66577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22112] = 3, + [23201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, + ACTIONS(2071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2028), 30, + ACTIONS(2069), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64527,12 +66613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22151] = 3, + [23240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2032), 30, + ACTIONS(1072), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64563,55 +66649,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22190] = 10, + [23279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1996), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - 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, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1811), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [22243] = 3, + [23348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(2075), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 30, + ACTIONS(2073), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64642,12 +66736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22282] = 3, + [23387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(2079), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1052), 30, + ACTIONS(2077), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64678,12 +66772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22321] = 3, + [23426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2083), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2036), 30, + ACTIONS(2081), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64714,12 +66808,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22360] = 3, + [23465] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1935), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [23538] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1817), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1811), 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, + [23605] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1817), 1, + anon_sym_PIPE, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2055), 1, + anon_sym_AMP, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1811), 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, + [23670] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1817), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1811), 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, + [23733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(2089), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2040), 30, + ACTIONS(2087), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64750,12 +67044,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22399] = 3, + [23772] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1817), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1811), 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, + [23833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(2093), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2044), 30, + ACTIONS(2091), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64786,12 +67127,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22438] = 3, + [23872] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1817), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1811), 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, + [23925] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1817), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1811), 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, + [23982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(1098), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1060), 30, + ACTIONS(1096), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64822,10 +67251,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22477] = 3, + [24021] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1811), 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, + [24088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 7, + ACTIONS(1389), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -64833,7 +67312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2048), 24, + ACTIONS(1387), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -64858,12 +67337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22516] = 3, + [24127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2097), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 30, + ACTIONS(2095), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -64894,23 +67373,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22555] = 3, + [24166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1090), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1978), 24, + ACTIONS(1088), 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, @@ -64930,160 +67409,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22594] = 12, + [24205] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 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, - 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, + ACTIONS(1817), 4, 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(1896), 6, + ACTIONS(1811), 15, 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, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2002), 2, + 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, - ACTIONS(1806), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [22791] = 3, + [24260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(2101), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2052), 30, + ACTIONS(2099), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65114,112 +67489,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [22830] = 17, + [24299] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 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, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 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(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1806), 8, + ACTIONS(1873), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 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, - [22897] = 17, + [24356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(2105), 7, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2103), 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, + [24395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - [22964] = 3, + ACTIONS(2029), 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, + [24434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 1, + ACTIONS(2109), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2056), 30, + ACTIONS(2107), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65250,12 +67642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23003] = 3, + [24473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2113), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2060), 30, + ACTIONS(2111), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65286,114 +67678,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, + [24512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(1070), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2064), 30, + ACTIONS(1068), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65424,115 +67714,23 @@ 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, + [24551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1106), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1362), 24, + ACTIONS(1104), 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, @@ -65552,12 +67750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23376] = 3, + [24590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2117), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2068), 30, + ACTIONS(2115), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65588,12 +67786,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23415] = 3, + [24629] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1831), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + [24702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(2121), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2072), 30, + ACTIONS(2119), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65624,12 +67875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23454] = 3, + [24741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(2125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1096), 30, + ACTIONS(2123), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65660,16 +67911,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23493] = 9, + [24780] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2127), 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, + ACTIONS(2129), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON, + STATE(652), 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, + [24830] = 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(2131), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65686,14 +67978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2078), 6, + ACTIONS(2133), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(645), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65701,16 +67993,16 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23543] = 9, + [24880] = 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(2135), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65727,14 +68019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2082), 6, + ACTIONS(2137), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(699), 7, + STATE(652), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65742,13 +68034,13 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23593] = 3, + [24930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 2, + ACTIONS(1781), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1658), 28, + ACTIONS(1783), 28, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -65777,16 +68069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23631] = 9, + [24968] = 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(2139), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, @@ -65803,14 +68095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - ACTIONS(2086), 6, + ACTIONS(2141), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_COLON, - STATE(645), 7, + STATE(711), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -65818,63 +68110,56 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [23681] = 9, + [25018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(870), 1, + ACTIONS(1785), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2088), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(43), 5, + anon_sym_LBRACE, + ACTIONS(1787), 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, + [25056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 2, + ACTIONS(2113), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1654), 28, + anon_sym_RBRACE, + ACTIONS(2111), 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,12 +68179,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23769] = 3, + [25093] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2143), 1, + anon_sym_COMMA, + ACTIONS(2145), 1, + anon_sym_RPAREN, + STATE(629), 1, + sym_argument_list, + STATE(1232), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(2113), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1060), 28, + ACTIONS(2111), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65928,12 +68266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23806] = 3, + [25205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(2097), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1088), 28, + ACTIONS(2095), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -65962,20 +68300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23843] = 5, + [25242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2071), 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(2069), 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 +68334,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23884] = 3, + [25279] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2147), 1, + anon_sym_COMMA, + ACTIONS(2149), 1, + anon_sym_RBRACE, + STATE(629), 1, + sym_argument_list, + STATE(1199), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 2, + ACTIONS(2097), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2020), 27, + ACTIONS(2095), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66032,13 +68421,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23921] = 3, + [25391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 2, + ACTIONS(2105), 1, + anon_sym_LBRACK_LBRACK, + STATE(450), 1, + sym_string_literal, + ACTIONS(2151), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2103), 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, + [25432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2121), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1104), 27, + ACTIONS(2119), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -66066,68 +68491,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [23958] = 22, + [25469] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2094), 1, + ACTIONS(2143), 1, anon_sym_COMMA, - ACTIONS(2096), 1, + ACTIONS(2153), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - STATE(1199), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(1798), 2, + STATE(1217), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [24033] = 3, + [25544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2022), 1, + ACTIONS(2101), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2020), 28, + anon_sym_RBRACE, + ACTIONS(2099), 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,15 +68578,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24070] = 3, + [25581] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2155), 1, + anon_sym_COMMA, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2157), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [25654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1054), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2052), 28, + anon_sym_RBRACE, + ACTIONS(1052), 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, @@ -66187,12 +68664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24107] = 3, + [25691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 1, + ACTIONS(2117), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2056), 28, + ACTIONS(2115), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66221,12 +68698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24144] = 3, + [25728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(2109), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2024), 28, + ACTIONS(2107), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66255,15 +68732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24181] = 3, + [25765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(2125), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2032), 28, + anon_sym_RBRACE, + ACTIONS(2123), 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, @@ -66289,15 +68766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24218] = 3, + [25802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 2, + ACTIONS(2079), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2052), 27, + ACTIONS(2077), 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 +68800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24255] = 3, + [25839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(2071), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2064), 28, + ACTIONS(2069), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66357,15 +68834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24292] = 3, + [25876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 2, + ACTIONS(2075), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2056), 27, + ACTIONS(2073), 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 +68868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24329] = 3, + [25913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 2, + ACTIONS(2067), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2060), 27, + ACTIONS(2065), 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,15 +68902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24366] = 3, + [25950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(2083), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2028), 27, + ACTIONS(2081), 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, @@ -66459,50 +68936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24403] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 1, - sym_identifier, - ACTIONS(2107), 1, - sym_primitive_type, - 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), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2103), 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, - anon_sym_inline, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [24448] = 3, + [25987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 1, + ACTIONS(2121), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2072), 28, + ACTIONS(2119), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66531,15 +68970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24485] = 3, + [26024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(2093), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1052), 27, + ACTIONS(2091), 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, @@ -66565,15 +69004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24522] = 3, + [26061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 2, + ACTIONS(2101), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1060), 27, + ACTIONS(2099), 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,123 +69038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24559] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 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, - 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, - [24600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 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, - 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, - [24641] = 5, + [26098] = 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(1090), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2040), 27, + ACTIONS(1088), 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 +69072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24719] = 3, + [26135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 2, + ACTIONS(1106), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2044), 27, + ACTIONS(1104), 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 +69106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24756] = 3, + [26172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2125), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2060), 28, + ACTIONS(2123), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66809,101 +69140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - anon_sym_LBRACK_LBRACK, - STATE(437), 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_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, - [24834] = 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(2116), 1, - anon_sym_COMMA, - ACTIONS(2118), 1, - anon_sym_RPAREN, - STATE(595), 1, - sym_argument_list, - STATE(1220), 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, - [24909] = 3, + [26209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, + ACTIONS(1070), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2028), 28, + ACTIONS(1068), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -66932,15 +69174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24946] = 3, + [26246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 2, + ACTIONS(1074), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1990), 27, + ACTIONS(1072), 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, @@ -66966,15 +69208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24983] = 3, + [26283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 2, + ACTIONS(1054), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2036), 27, + ACTIONS(1052), 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, @@ -67000,13 +69242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25020] = 3, + [26320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 2, + ACTIONS(1074), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1092), 27, + ACTIONS(1072), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67034,18 +69276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25057] = 3, + [26357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 2, + ACTIONS(2105), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1096), 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(469), 1, + sym_string_literal, + ACTIONS(2151), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2103), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -67068,13 +69312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25094] = 3, + [26398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(2089), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2068), 27, + ACTIONS(2087), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67102,15 +69346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25131] = 3, + [26435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(2089), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2072), 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, @@ -67136,12 +69380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25168] = 3, + [26472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1098), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1052), 28, + ACTIONS(1096), 28, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -67170,13 +69414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25205] = 3, + [26509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 2, + ACTIONS(2079), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2064), 27, + ACTIONS(2077), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67204,15 +69448,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25242] = 3, + [26546] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2159), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, + anon_sym_RPAREN, + STATE(629), 1, + sym_argument_list, + STATE(1266), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2109), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2040), 28, + anon_sym_RBRACE, + ACTIONS(2107), 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,15 +69535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25279] = 3, + [26658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, + ACTIONS(1070), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2044), 28, + anon_sym_RBRACE, + ACTIONS(1068), 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, @@ -67272,15 +69569,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25316] = 3, + [26695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2167), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2165), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1990), 28, + anon_sym_COLON, + ACTIONS(2163), 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, + [26736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(1104), 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, @@ -67306,7 +69639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25353] = 3, + [26773] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1090), 2, @@ -67340,67 +69673,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25390] = 21, + [26810] = 5, 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(2105), 1, + anon_sym_LBRACK_LBRACK, + STATE(435), 1, + sym_string_literal, + ACTIONS(2151), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2103), 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, + [26851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(2117), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1092), 28, + anon_sym_RBRACE, + ACTIONS(2115), 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, @@ -67426,15 +69743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25500] = 3, + [26888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(1098), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1096), 28, + anon_sym_RBRACE, + ACTIONS(1096), 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, @@ -67460,68 +69777,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25537] = 22, + [26925] = 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(2124), 1, - anon_sym_COMMA, - ACTIONS(2126), 1, + ACTIONS(2093), 2, + anon_sym_LBRACK_LBRACK, 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, + ACTIONS(2091), 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, + 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, + [26962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, + ACTIONS(2083), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2068), 28, + anon_sym_RBRACE, + ACTIONS(2081), 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,15 +69845,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25649] = 3, + [26999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2105), 1, + anon_sym_LBRACK_LBRACK, + STATE(454), 1, + sym_string_literal, + ACTIONS(2151), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2103), 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, + [27040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(2075), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1104), 28, + anon_sym_RBRACE, + ACTIONS(2073), 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, @@ -67581,13 +69915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25686] = 3, + [27077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 2, + ACTIONS(2067), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2024), 27, + ACTIONS(2065), 27, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -67615,55 +69949,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [25723] = 3, + [27114] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2032), 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, + ACTIONS(2170), 1, + sym_identifier, + ACTIONS(2179), 1, + sym_primitive_type, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2177), 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, - [25760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2038), 1, + ACTIONS(2173), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2036), 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(2175), 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, @@ -67674,3229 +69987,3433 @@ 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, - [25797] = 22, + [27159] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2116), 1, - anon_sym_COMMA, - ACTIONS(2128), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - STATE(1209), 1, - aux_sym_argument_list_repeat1, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [25872] = 21, + ACTIONS(2181), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [27229] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2130), 1, + ACTIONS(2183), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [25944] = 21, + [27301] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2132), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2185), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26016] = 15, + [27373] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1400), 1, - anon_sym_STAR, - ACTIONS(1402), 1, - anon_sym___based, - ACTIONS(1961), 1, - sym_identifier, - ACTIONS(1969), 1, + ACTIONS(1801), 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, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2155), 1, 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, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - [26076] = 21, + ACTIONS(2187), 1, + anon_sym_SEMI, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27445] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2189), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26148] = 20, + [27517] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_COMMA, + ACTIONS(2191), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2138), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [26218] = 20, + [27589] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_COMMA, + ACTIONS(2193), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2140), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26288] = 21, + [27661] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2142), 1, + ACTIONS(2195), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26360] = 21, + [27733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2144), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2197), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26432] = 21, + [27805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2146), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2199), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26504] = 21, + [27877] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2148), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2201), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26576] = 21, + [27949] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2150), 1, + ACTIONS(2203), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26648] = 20, + [28021] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2152), 2, + ACTIONS(2205), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [26718] = 21, + anon_sym_RPAREN, + [28091] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2154), 1, + ACTIONS(2207), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26790] = 20, + [28163] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_COMMA, + ACTIONS(2209), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2156), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [26860] = 21, + [28235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2158), 1, + ACTIONS(2211), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [26932] = 21, + [28307] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2160), 1, + ACTIONS(2213), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27004] = 21, + [28379] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2162), 1, + ACTIONS(2215), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27076] = 21, + [28451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2164), 1, + ACTIONS(2217), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27148] = 21, + [28523] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2166), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2219), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27220] = 21, + anon_sym_GT_GT, + [28595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2168), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2221), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27292] = 21, + [28667] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2170), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2223), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27364] = 20, + [28739] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_COMMA, + ACTIONS(2225), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2172), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [27434] = 21, + [28811] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2174), 1, + ACTIONS(2227), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27506] = 21, + [28883] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2176), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2229), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27578] = 21, + [28955] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2178), 1, + ACTIONS(2231), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27650] = 21, + [29027] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2180), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2233), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27722] = 21, + [29099] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2182), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2235), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27794] = 21, + [29171] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2184), 1, + ACTIONS(2237), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27866] = 21, + [29243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2186), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [27938] = 21, + ACTIONS(2239), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [29313] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2188), 1, + ACTIONS(2241), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28010] = 21, + [29385] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2190), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2243), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28082] = 21, + [29457] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2192), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28154] = 21, + [29529] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2194), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2247), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28226] = 21, + [29601] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2196), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2249), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28298] = 21, + [29673] = 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(2019), 1, + sym_identifier, + ACTIONS(2027), 1, + anon_sym_LBRACK, + STATE(1050), 1, + sym__declarator, + STATE(1146), 1, + sym__abstract_declarator, + STATE(1166), 1, + sym_parameter_list, + STATE(1472), 1, + sym_ms_based_modifier, + ACTIONS(2251), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1112), 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, + [29733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2198), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2253), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28370] = 21, + [29805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2200), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2255), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28442] = 21, + [29877] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2202), 1, + ACTIONS(2257), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28514] = 21, + [29949] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2204), 1, + ACTIONS(2259), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28586] = 20, + [30021] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2155), 1, + anon_sym_COMMA, + ACTIONS(2261), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [28656] = 21, + [30093] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2263), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28728] = 21, + [30165] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2210), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2265), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28800] = 21, + [30237] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2212), 1, + ACTIONS(2267), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28872] = 21, + [30309] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2214), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [28944] = 21, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [30379] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(2271), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29016] = 21, + [30451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2273), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29088] = 21, + [30523] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2220), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2275), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29160] = 21, + [30595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2222), 1, + ACTIONS(2277), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29232] = 21, + [30667] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2224), 1, + ACTIONS(2279), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29304] = 21, + [30739] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2226), 1, + ACTIONS(2281), 1, anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29376] = 21, + [30811] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2228), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29448] = 21, + ACTIONS(2283), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [30881] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(595), 1, + ACTIONS(2285), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29520] = 21, + [30953] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2232), 1, + ACTIONS(2287), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29592] = 21, + [31025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2234), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2289), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29664] = 21, + [31097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2236), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29736] = 21, + ACTIONS(2291), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [31167] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2155), 1, anon_sym_COMMA, - ACTIONS(2238), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2293), 1, + anon_sym_RPAREN, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29808] = 21, + [31239] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2297), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + anon_sym_STAR, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1082), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(862), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(995), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1125), 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, + [31296] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1055), 1, + sym__declarator, + STATE(1472), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(993), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1112), 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, + [31353] = 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(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1088), 1, + sym__type_declarator, + STATE(1454), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(838), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1016), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1147), 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, + [31410] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, - anon_sym_COMMA, - ACTIONS(2240), 1, - anon_sym_SEMI, - STATE(595), 1, + ACTIONS(2311), 1, + anon_sym_COLON, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29880] = 21, + [31479] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2120), 1, + ACTIONS(2313), 1, anon_sym_COMMA, - ACTIONS(2242), 1, - anon_sym_RPAREN, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [29952] = 16, + [31548] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1050), 1, + sym__declarator, + STATE(1472), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1010), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1112), 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, + [31605] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1050), 1, + sym__declarator, + STATE(1472), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(824), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1010), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1112), 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, + [31662] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1808), 1, - anon_sym_PIPE, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, + ACTIONS(2321), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2323), 1, + anon_sym_AMP_AMP, + ACTIONS(2325), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_CARET, + ACTIONS(2329), 1, anon_sym_AMP, - STATE(595), 1, + ACTIONS(2339), 1, + anon_sym_RBRACK, + ACTIONS(2341), 1, + anon_sym_QMARK, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 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, + [31731] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2260), 1, + ACTIONS(2343), 1, anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [30082] = 20, + [31800] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 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(2270), 1, - anon_sym_RBRACK, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2319), 1, + anon_sym_SLASH, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2337), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1873), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(1871), 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, - ACTIONS(2258), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30151] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [31853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1757), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30220] = 14, + [31922] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1043), 1, + STATE(1059), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(857), 2, + STATE(828), 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, + STATE(984), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1011), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(2023), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -70909,189 +73426,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [30334] = 20, + [31979] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 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(2278), 1, - anon_sym_COMMA, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(1817), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(1811), 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, - [30403] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [32028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 1, + ACTIONS(1745), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30472] = 20, + [32097] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2329), 1, anon_sym_AMP, - ACTIONS(2018), 1, - anon_sym_QMARK, - ACTIONS(2280), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(1855), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2331), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [30541] = 14, + [32164] = 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(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1069), 1, - sym__field_declarator, - STATE(1405), 1, + STATE(1099), 1, + sym__type_declarator, + STATE(1454), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(839), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(998), 2, + STATE(996), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2023), 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(1147), 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, @@ -71099,282 +73605,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [30598] = 20, + [32221] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30667] = 20, + ACTIONS(1811), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [32286] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1766), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 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, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30736] = 20, + ACTIONS(1811), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [32349] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1908), 1, - anon_sym_RBRACK, - ACTIONS(1912), 1, + ACTIONS(1817), 1, + anon_sym_PIPE, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 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(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, - anon_sym_QMARK, - STATE(595), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30805] = 20, + ACTIONS(1811), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [32412] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1817), 1, + anon_sym_PIPE, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, + ACTIONS(2329), 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(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [30874] = 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, + ACTIONS(1811), 5, 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_RBRACK, anon_sym_QMARK, - ACTIONS(2288), 1, - anon_sym_SEMI, - STATE(595), 1, + [32473] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, + anon_sym_SLASH, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(1817), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2331), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [30943] = 14, + ACTIONS(1811), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [32532] = 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(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1088), 1, + STATE(1099), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1009), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1011), 2, + STATE(858), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + STATE(996), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2023), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -71387,354 +73876,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [31000] = 20, + [32589] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2296), 1, + ACTIONS(2345), 1, anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 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, + [32658] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1868), 1, - anon_sym_RBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 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(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(1817), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 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, - 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(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(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(1811), 7, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(2298), 1, - anon_sym_COLON, - STATE(595), 1, + [32715] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, + anon_sym_SLASH, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 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(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, + ACTIONS(1817), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1811), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [31435] = 11, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [32768] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 4, + ACTIONS(1817), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 11, + ACTIONS(1811), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -71746,401 +74049,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [31486] = 20, + [32819] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2053), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2055), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2085), 1, anon_sym_QMARK, - ACTIONS(2300), 1, + ACTIONS(2347), 1, anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [31555] = 12, + [32888] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 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(2244), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2246), 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, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, anon_sym_QMARK, - [31608] = 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(1067), 1, - sym__field_declarator, - STATE(1405), 1, - sym_ms_based_modifier, - ACTIONS(1967), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1006), 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, - [31665] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, - anon_sym_LPAREN2, - ACTIONS(2248), 1, - anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2349), 1, + anon_sym_COLON, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2258), 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), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2057), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [31718] = 20, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32957] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(1771), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31787] = 14, + [33026] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2351), 1, + anon_sym_COLON, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2244), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2254), 2, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 7, - 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, + [33095] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1935), 1, + anon_sym_RBRACK, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2321), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2323), 1, + anon_sym_AMP_AMP, + ACTIONS(2325), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_CARET, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, + anon_sym_QMARK, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1808), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 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, + [33164] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1747), 1, + anon_sym_RBRACK, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_RBRACK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [31972] = 14, + [33233] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2299), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1056), 1, - sym__declarator, - STATE(1379), 1, + STATE(1080), 1, + sym__field_declarator, + STATE(1359), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(818), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(967), 2, + STATE(982), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1965), 3, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2023), 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, + STATE(1125), 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, @@ -72148,181 +74386,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32029] = 20, + [33290] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 1, + ACTIONS(1755), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32098] = 17, + [33359] = 20, 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, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1806), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1769), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [32161] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2329), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2341), 1, anon_sym_QMARK, - ACTIONS(2304), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2331), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32230] = 14, + [33428] = 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(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1082), 1, + STATE(1094), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 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(1022), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + ACTIONS(2023), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -72335,380 +74527,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32287] = 20, + [33485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 1, - anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1831), 1, + anon_sym_RBRACK, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32356] = 20, + [33554] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, + ACTIONS(1749), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32425] = 20, + [33623] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1751), 1, + anon_sym_RBRACK, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2329), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2341), 1, anon_sym_QMARK, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2331), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32494] = 17, + [33692] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, - anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2266), 1, - anon_sym_PIPE, - 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, + ACTIONS(2299), 1, 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, - 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, - [32557] = 20, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1074), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + ACTIONS(2025), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(983), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2023), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1125), 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, + [33749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(1963), 1, + anon_sym_LPAREN2, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2006), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2008), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2010), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2012), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2014), 1, + ACTIONS(2329), 1, anon_sym_AMP, - ACTIONS(2018), 1, + ACTIONS(2341), 1, anon_sym_QMARK, - ACTIONS(2308), 1, - anon_sym_COLON, - STATE(595), 1, + ACTIONS(2353), 1, + anon_sym_RBRACK, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1994), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1996), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2000), 2, + ACTIONS(2331), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2002), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2004), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2016), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [32626] = 20, + [33818] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1753), 1, anon_sym_RBRACK, - ACTIONS(1796), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - ACTIONS(2272), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(595), 1, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32695] = 18, + [33887] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2264), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2053), 1, anon_sym_CARET, - STATE(595), 1, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2355), 1, + anon_sym_SEMI, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2244), 2, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2043), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2057), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1806), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [32760] = 14, + [33956] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2299), 1, anon_sym_STAR, - STATE(1013), 1, + STATE(1023), 1, sym_ms_unaligned_ptr_modifier, - STATE(1031), 1, - sym__declarator, - STATE(1379), 1, + STATE(1074), 1, + sym__field_declarator, + STATE(1359), 1, sym_ms_based_modifier, - ACTIONS(1967), 2, + ACTIONS(2025), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(984), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1011), 2, + STATE(855), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(1965), 3, + STATE(983), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2023), 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, + STATE(1125), 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, @@ -72716,146 +74907,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [32817] = 10, + [34013] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, anon_sym_SLASH, - STATE(595), 1, + ACTIONS(2047), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, + anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2357), 1, + anon_sym_COLON, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2246), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1808), 6, + ACTIONS(2041), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1806), 11, + ACTIONS(2061), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2063), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34082] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + anon_sym_SLASH, + ACTIONS(2047), 1, anon_sym_PIPE_PIPE, + ACTIONS(2049), 1, anon_sym_AMP_AMP, + ACTIONS(2051), 1, + anon_sym_PIPE, + ACTIONS(2053), 1, anon_sym_CARET, + ACTIONS(2055), 1, + anon_sym_AMP, + ACTIONS(2085), 1, + anon_sym_QMARK, + ACTIONS(2359), 1, + anon_sym_COLON, + STATE(629), 1, + sym_argument_list, + ACTIONS(1803), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1805), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2041), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2043), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2057), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2059), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2061), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2063), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [32866] = 19, + [34151] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1767), 1, + anon_sym_RBRACK, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1912), 1, + ACTIONS(1963), 1, anon_sym_LPAREN2, - ACTIONS(2248), 1, + ACTIONS(2319), 1, anon_sym_SLASH, - ACTIONS(2250), 1, - anon_sym_AMP, - ACTIONS(2262), 1, + ACTIONS(2321), 1, anon_sym_PIPE_PIPE, - ACTIONS(2264), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(2266), 1, + ACTIONS(2325), 1, anon_sym_PIPE, - ACTIONS(2268), 1, + ACTIONS(2327), 1, anon_sym_CARET, - STATE(595), 1, + ACTIONS(2329), 1, + anon_sym_AMP, + ACTIONS(2341), 1, + anon_sym_QMARK, + STATE(629), 1, sym_argument_list, - ACTIONS(1798), 2, + ACTIONS(1803), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1800), 2, + ACTIONS(1805), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1896), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2244), 2, + ACTIONS(2315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2246), 2, + ACTIONS(2317), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2252), 2, + ACTIONS(2331), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 2, + ACTIONS(2333), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 2, + ACTIONS(2335), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2258), 2, + ACTIONS(2337), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [32933] = 10, + [34220] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(870), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2310), 1, - anon_sym_SEMI, - ACTIONS(2080), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2082), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, - STATE(699), 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, - [32981] = 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(2361), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2131), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2133), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72871,7 +75084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72879,21 +75092,21 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33029] = 10, + [34268] = 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(2363), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2131), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2133), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72909,7 +75122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72917,21 +75130,21 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33077] = 10, + [34316] = 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(2365), 1, anon_sym_SEMI, - ACTIONS(2080), 2, + ACTIONS(2131), 2, anon_sym___based, sym_identifier, - ACTIONS(2082), 2, + ACTIONS(2133), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 5, @@ -72947,7 +75160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - STATE(699), 7, + STATE(709), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -72955,39 +75168,29 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - [33125] = 13, + [34364] = 10, ACTIONS(3), 1, sym_comment, - 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(1406), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(878), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2367), 1, + anon_sym_SEMI, + ACTIONS(2131), 2, + anon_sym___based, sym_identifier, - STATE(1001), 1, - sym__type_specifier, - STATE(1012), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, - sym_type_descriptor, - STATE(878), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1354), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(897), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + ACTIONS(2133), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + 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, @@ -72995,14 +75198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33178] = 5, + STATE(709), 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, + [34412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2373), 1, anon_sym_LBRACE, - STATE(885), 1, + STATE(898), 1, sym_enumerator_list, - ACTIONS(2320), 7, + ACTIONS(2371), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73010,7 +75221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2318), 16, + ACTIONS(2369), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73027,14 +75238,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33215] = 5, + [34449] = 13, + ACTIONS(3), 1, + sym_comment, + 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(1425), 1, + sym_identifier, + STATE(1007), 1, + sym__type_specifier, + STATE(1021), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1517), 1, + sym_type_descriptor, + STATE(891), 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(910), 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, + [34502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(909), 1, sym_field_declaration_list, - ACTIONS(2326), 7, + ACTIONS(2377), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73042,7 +75293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2324), 16, + ACTIONS(2375), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73059,14 +75310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33252] = 5, + [34539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(904), 1, sym_field_declaration_list, - ACTIONS(2332), 7, + ACTIONS(2383), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73074,7 +75325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2330), 16, + ACTIONS(2381), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73091,7 +75342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33289] = 13, + [34576] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73102,23 +75353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(1001), 1, + STATE(1007), 1, sym__type_specifier, - STATE(1012), 1, + STATE(1021), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1461), 1, + STATE(1427), 1, sym_type_descriptor, - STATE(878), 2, + STATE(891), 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(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73131,7 +75382,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33342] = 13, + [34629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_field_declaration_list, + ACTIONS(2387), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2385), 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, + [34666] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73142,23 +75425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(1001), 1, + STATE(1007), 1, sym__type_specifier, - STATE(1012), 1, + STATE(1021), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1479), 1, + STATE(1407), 1, sym_type_descriptor, - STATE(878), 2, + STATE(891), 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(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73171,14 +75454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33395] = 5, + [34719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(883), 1, + STATE(913), 1, sym_field_declaration_list, - ACTIONS(2336), 7, + ACTIONS(2391), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73186,7 +75469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2334), 16, + ACTIONS(2389), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73203,39 +75486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(900), 1, - sym_field_declaration_list, - ACTIONS(2340), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2338), 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, - [33469] = 12, + [34756] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73246,13 +75497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1032), 1, + STATE(1067), 1, sym__type_specifier, - STATE(873), 2, + STATE(883), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73260,7 +75511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73273,7 +75524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33519] = 12, + [34806] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73284,13 +75535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1045), 1, + STATE(1061), 1, sym__type_specifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73298,7 +75549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73311,7 +75562,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33569] = 12, + [34856] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2010), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2393), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + ACTIONS(2008), 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, + [34892] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73322,13 +75604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1046), 1, + STATE(1049), 1, sym__type_specifier, - STATE(875), 2, + STATE(888), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73336,7 +75618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73349,7 +75631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33619] = 12, + [34942] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73360,13 +75642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1042), 1, + STATE(1043), 1, sym__type_specifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73374,7 +75656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73387,38 +75669,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, + [34992] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73429,13 +75680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1037), 1, + STATE(1046), 1, sym__type_specifier, - STATE(879), 2, + STATE(889), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73443,7 +75694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73456,7 +75707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33755] = 12, + [35042] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73467,21 +75718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(974), 1, - sym__type_specifier, - STATE(1012), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(876), 2, + STATE(1064), 1, + sym__type_specifier, + STATE(884), 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(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73494,7 +75745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33805] = 12, + [35092] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73505,13 +75756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1034), 1, + STATE(1051), 1, sym__type_specifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73519,7 +75770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73532,7 +75783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33855] = 12, + [35142] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73543,13 +75794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, + STATE(765), 1, aux_sym_sized_type_specifier_repeat1, STATE(1041), 1, sym__type_specifier, - STATE(876), 2, + STATE(886), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(47), 4, @@ -73557,7 +75808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(897), 5, + STATE(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73570,7 +75821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33905] = 12, + [35192] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -73581,21 +75832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1406), 1, + ACTIONS(1425), 1, sym_identifier, - STATE(721), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1047), 1, + STATE(987), 1, sym__type_specifier, - STATE(880), 2, + STATE(1021), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(884), 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(910), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -73608,10 +75859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [33955] = 3, + [35242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2398), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73619,7 +75870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2345), 16, + ACTIONS(2396), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73636,10 +75887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [33986] = 3, + [35273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 7, + ACTIONS(2402), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73647,7 +75898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2349), 16, + ACTIONS(2400), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73664,10 +75915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34017] = 3, + [35304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 7, + ACTIONS(2406), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73675,7 +75926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2353), 16, + ACTIONS(2404), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73692,10 +75943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34048] = 3, + [35335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 7, + ACTIONS(2410), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73703,7 +75954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2357), 16, + ACTIONS(2408), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73720,18 +75971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34079] = 3, + [35366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2363), 7, + ACTIONS(2412), 1, + anon_sym_LPAREN2, + ACTIONS(1526), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2361), 16, + ACTIONS(1513), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73748,15 +76000,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34110] = 3, + [35399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(2417), 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(2415), 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 +76027,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, + [35430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 7, + ACTIONS(2421), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73787,7 +76039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2369), 16, + ACTIONS(2419), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73804,19 +76056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34172] = 4, + [35461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_LPAREN2, - ACTIONS(1461), 6, + ACTIONS(2425), 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(2423), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73833,10 +76084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34205] = 3, + [35492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 7, + ACTIONS(2429), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73844,7 +76095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2376), 16, + ACTIONS(2427), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73861,10 +76112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34236] = 3, + [35523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 7, + ACTIONS(2433), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73872,7 +76123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2380), 16, + ACTIONS(2431), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73889,10 +76140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34267] = 3, + [35554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 7, + ACTIONS(2437), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73900,7 +76151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2384), 16, + ACTIONS(2435), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73917,10 +76168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34298] = 3, + [35585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 7, + ACTIONS(2441), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73928,7 +76179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2388), 16, + ACTIONS(2439), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73945,10 +76196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34329] = 3, + [35616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 7, + ACTIONS(2445), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -73956,7 +76207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2392), 16, + ACTIONS(2443), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -73973,23 +76224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34360] = 3, + [35647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2449), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2396), 16, + ACTIONS(2447), 22, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -74000,11 +76243,19 @@ 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, - [34391] = 3, + [35678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 7, + ACTIONS(2453), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74012,7 +76263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2400), 16, + ACTIONS(2451), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74029,10 +76280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34422] = 3, + [35709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 7, + ACTIONS(2457), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74040,7 +76291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2404), 16, + ACTIONS(2455), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74057,10 +76308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34453] = 3, + [35740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 7, + ACTIONS(2461), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74068,7 +76319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2408), 16, + ACTIONS(2459), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74085,10 +76336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34484] = 3, + [35771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 7, + ACTIONS(2465), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74096,7 +76347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2412), 16, + ACTIONS(2463), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74113,10 +76364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34515] = 3, + [35802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 7, + ACTIONS(2469), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74124,7 +76375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2416), 16, + ACTIONS(2467), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74141,10 +76392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34546] = 3, + [35833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 7, + ACTIONS(2473), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74152,7 +76403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2420), 16, + ACTIONS(2471), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74169,10 +76420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34577] = 3, + [35864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 7, + ACTIONS(2477), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74180,7 +76431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2424), 16, + ACTIONS(2475), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74197,10 +76448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34608] = 3, + [35895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 7, + ACTIONS(2481), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -74208,7 +76459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2428), 16, + ACTIONS(2479), 16, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -74225,20 +76476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [34639] = 5, + [35926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 1, + ACTIONS(2485), 1, anon_sym_LPAREN2, - STATE(922), 1, + STATE(930), 1, sym_preproc_argument_list, - ACTIONS(2436), 5, + ACTIONS(2487), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2432), 15, + ACTIONS(2483), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -74254,32 +76505,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [34673] = 10, + [35960] = 5, + ACTIONS(2483), 1, + anon_sym_LF, + ACTIONS(2489), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, + sym_comment, + STATE(1009), 1, + sym_preproc_argument_list, + ACTIONS(2487), 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, + [35993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 1, + anon_sym_LPAREN2, + ACTIONS(2500), 1, + anon_sym_LBRACK, + ACTIONS(1526), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2493), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1513), 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, + [36028] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2440), 1, + ACTIONS(2505), 1, anon_sym_RPAREN, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2450), 1, + ACTIONS(2515), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(906), 7, + STATE(918), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74287,138 +76595,110 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34716] = 16, + [36071] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - ACTIONS(2456), 1, + ACTIONS(2521), 1, anon_sym_RPAREN, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2464), 1, + ACTIONS(2529), 1, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, + ACTIONS(2531), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_PIPE, - ACTIONS(2470), 1, + ACTIONS(2535), 1, anon_sym_CARET, - ACTIONS(2472), 1, + ACTIONS(2537), 1, anon_sym_AMP, - STATE(1175), 1, + STATE(1218), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2541), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2545), 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, - sym_comment, - STATE(968), 1, - sym_preproc_argument_list, - ACTIONS(2436), 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, - [34804] = 16, + [36126] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2464), 1, + ACTIONS(2529), 1, anon_sym_PIPE_PIPE, - ACTIONS(2466), 1, + ACTIONS(2531), 1, anon_sym_AMP_AMP, - ACTIONS(2468), 1, + ACTIONS(2533), 1, anon_sym_PIPE, - ACTIONS(2470), 1, + ACTIONS(2535), 1, anon_sym_CARET, - ACTIONS(2472), 1, + ACTIONS(2537), 1, anon_sym_AMP, - ACTIONS(2486), 1, + ACTIONS(2547), 1, anon_sym_RPAREN, - STATE(1215), 1, + STATE(1229), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2541), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [34859] = 10, + [36181] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2488), 1, + ACTIONS(2549), 1, anon_sym_RPAREN, - ACTIONS(2490), 1, + ACTIONS(2551), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(908), 7, + STATE(919), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74426,59 +76706,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34902] = 6, + [36224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_LPAREN2, - ACTIONS(2499), 1, - anon_sym_LBRACK, - ACTIONS(1461), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2492), 2, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2502), 1, + ACTIONS(2563), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(965), 7, + STATE(1018), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74486,30 +76737,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [34977] = 9, + [36264] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2514), 1, + ACTIONS(2567), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(991), 7, + STATE(1001), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74517,30 +76768,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35017] = 9, + [36304] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2518), 1, + ACTIONS(2569), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(945), 7, + STATE(994), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74548,30 +76799,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35057] = 9, + [36344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2520), 1, + ACTIONS(2571), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(941), 7, + STATE(933), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74579,30 +76830,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35097] = 9, + [36384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2522), 1, + ACTIONS(2573), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(937), 7, + STATE(971), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74610,30 +76861,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35137] = 9, + [36424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2524), 1, + ACTIONS(2575), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(935), 7, + STATE(978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74641,24 +76892,74 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35177] = 9, + [36464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2577), 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, + [36492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2581), 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, + [36520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2526), 1, + ACTIONS(2585), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -74672,78 +76973,68 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35217] = 9, + [36560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - sym_identifier, - ACTIONS(2442), 1, - anon_sym_LPAREN2, - ACTIONS(2444), 1, - anon_sym_defined, - ACTIONS(2528), 1, - sym_number_literal, - ACTIONS(2446), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2589), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2587), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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(933), 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, - [35257] = 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, + [36588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - sym_identifier, - ACTIONS(2442), 1, - anon_sym_LPAREN2, - ACTIONS(2444), 1, - anon_sym_defined, - ACTIONS(2530), 1, - sym_number_literal, - ACTIONS(2446), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2527), 1, + anon_sym_SLASH, + ACTIONS(2525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2593), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2591), 13, + anon_sym_COMMA, + anon_sym_RPAREN, 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(932), 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, - [35297] = 3, + 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, + [36620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 5, + ACTIONS(2593), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2532), 15, + ACTIONS(2591), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -74759,16 +77050,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [35325] = 3, + [36648] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_SLASH, + ACTIONS(2531), 1, + anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_PIPE, + ACTIONS(2535), 1, + anon_sym_CARET, + ACTIONS(2537), 1, + anon_sym_AMP, + ACTIONS(2523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2591), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [36696] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_SLASH, + ACTIONS(2533), 1, + anon_sym_PIPE, + ACTIONS(2535), 1, + anon_sym_CARET, + ACTIONS(2537), 1, + anon_sym_AMP, + ACTIONS(2523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2591), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [36742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 5, + ACTIONS(2597), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2536), 15, + ACTIONS(2595), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -74784,16 +77144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [35353] = 3, + [36770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 5, + ACTIONS(1897), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2540), 15, + ACTIONS(1895), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -74809,30 +77169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [35381] = 9, + [36798] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2544), 1, + ACTIONS(2599), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1005), 7, + STATE(977), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74840,30 +77200,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35421] = 9, + [36838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(1409), 1, + anon_sym_LPAREN2, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2027), 1, + anon_sym_LBRACK, + STATE(1108), 1, + sym__declarator, + STATE(1153), 1, + sym__abstract_declarator, + STATE(1166), 1, + sym_parameter_list, + STATE(1472), 1, + sym_ms_based_modifier, + ACTIONS(2601), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1112), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [36886] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2546), 1, + ACTIONS(2603), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(920), 7, + STATE(959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74871,30 +77266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35461] = 9, + [36926] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2548), 1, + ACTIONS(2605), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(973), 7, + STATE(953), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74902,30 +77297,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35501] = 9, + [36966] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2550), 1, + ACTIONS(2607), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(957), 7, + STATE(992), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74933,30 +77328,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35541] = 9, + [37006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2552), 1, + ACTIONS(2609), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(979), 7, + STATE(997), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74964,30 +77359,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35581] = 9, + [37046] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2554), 1, + ACTIONS(2611), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(958), 7, + STATE(998), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -74995,30 +77390,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35621] = 9, + [37086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2556), 1, + ACTIONS(2613), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(966), 7, + STATE(976), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75026,201 +77421,30 @@ 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, + [37126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2566), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2570), 1, + ACTIONS(2615), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1002), 7, + STATE(999), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75228,64 +77452,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35911] = 12, + [37166] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2470), 1, - anon_sym_CARET, - ACTIONS(2472), 1, + ACTIONS(2537), 1, anon_sym_AMP, - ACTIONS(2568), 1, + ACTIONS(2593), 1, anon_sym_PIPE, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2541), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2480), 2, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2566), 4, + ACTIONS(2591), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [35957] = 9, + anon_sym_CARET, + [37210] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2442), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2444), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2572), 1, + ACTIONS(2617), 1, sym_number_literal, - ACTIONS(2446), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2448), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2452), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(950), 7, + STATE(1000), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75293,30 +77516,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [35997] = 9, + [37250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2619), 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, + [37278] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2574), 1, + ACTIONS(2623), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(990), 7, + STATE(1002), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75324,30 +77572,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36037] = 9, + [37318] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2576), 1, + ACTIONS(2625), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1004), 7, + STATE(1019), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75355,63 +77603,148 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36077] = 11, + [37358] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2472), 1, + ACTIONS(2535), 1, + anon_sym_CARET, + ACTIONS(2537), 1, anon_sym_AMP, - ACTIONS(2568), 1, + ACTIONS(2593), 1, anon_sym_PIPE, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2591), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [37404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2627), 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, - ACTIONS(2480), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2566), 5, + [37432] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2593), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2591), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [36121] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2578), 1, + ACTIONS(2631), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(997), 7, + STATE(946), 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, + [37506] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + sym_identifier, + ACTIONS(2507), 1, + anon_sym_LPAREN2, + ACTIONS(2509), 1, + anon_sym_defined, + ACTIONS(2633), 1, + sym_number_literal, + ACTIONS(2511), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2513), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2517), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(951), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75419,30 +77752,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36161] = 9, + [37546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2580), 1, + ACTIONS(2635), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(987), 7, + STATE(932), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75450,30 +77783,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36201] = 9, + [37586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2582), 1, + ACTIONS(2637), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(986), 7, + STATE(931), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75481,62 +77814,84 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36241] = 10, + [37626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2474), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2545), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2593), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2478), 2, + ACTIONS(2591), 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, - ACTIONS(2480), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2568), 2, + [37662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2566), 5, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2639), 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, - [36283] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37690] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2584), 1, + ACTIONS(2643), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(985), 7, + STATE(972), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75544,30 +77899,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36323] = 9, + [37730] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2586), 1, + ACTIONS(2645), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(983), 7, + STATE(958), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75575,30 +77930,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36363] = 9, + [37770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2588), 1, + ACTIONS(2647), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(982), 7, + STATE(1015), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75606,30 +77961,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36403] = 9, + [37810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2649), 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, + [37838] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2590), 1, + ACTIONS(2653), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(981), 7, + STATE(1003), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75637,61 +78017,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, + [37878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2592), 1, + ACTIONS(2655), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(977), 7, + STATE(1006), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75699,30 +78048,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36523] = 9, + [37918] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2594), 1, + ACTIONS(2657), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(976), 7, + STATE(985), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75730,30 +78079,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36563] = 9, + [37958] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2596), 1, + ACTIONS(2659), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1007), 7, + STATE(1014), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75761,65 +78110,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36603] = 13, - 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(1099), 1, - sym__declarator, - STATE(1127), 1, - sym_parameter_list, - STATE(1130), 1, - sym__abstract_declarator, - STATE(1379), 1, - sym_ms_based_modifier, - ACTIONS(2598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [36651] = 9, + [37998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2600), 1, + ACTIONS(2661), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(975), 7, + STATE(991), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75827,30 +78141,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36691] = 9, + [38038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2507), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2509), 1, anon_sym_defined, - ACTIONS(2602), 1, + ACTIONS(2663), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2511), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2513), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2517), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1003), 7, + STATE(970), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -75858,26 +78172,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36731] = 7, + [38078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2480), 2, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2568), 4, + ACTIONS(2593), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2566), 9, + ACTIONS(2591), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -75885,135 +78203,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [36767] = 6, + [38118] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2527), 1, anon_sym_SLASH, - ACTIONS(2458), 2, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, + ACTIONS(2525), 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, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1832), 5, - anon_sym_SLASH, + ACTIONS(2593), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1830), 15, + ACTIONS(2591), 5, 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, - [36829] = 3, + [38160] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 5, + ACTIONS(2527), 1, anon_sym_SLASH, + ACTIONS(2529), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_AMP_AMP, + ACTIONS(2533), 1, anon_sym_PIPE, + ACTIONS(2535), 1, + anon_sym_CARET, + ACTIONS(2537), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2604), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2525), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2608), 15, + ACTIONS(2665), 2, anon_sym_COMMA, anon_sym_RPAREN, + [38210] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2553), 1, + sym_identifier, + ACTIONS(2555), 1, + anon_sym_LPAREN2, + ACTIONS(2557), 1, + anon_sym_defined, + ACTIONS(2667), 1, + sym_number_literal, + ACTIONS(2559), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2561), 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, - [36885] = 9, + ACTIONS(2565), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1012), 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, + [38250] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2612), 1, + ACTIONS(2669), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(980), 7, + STATE(1011), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76021,30 +78333,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36925] = 9, + [38290] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2553), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(2555), 1, anon_sym_LPAREN2, - ACTIONS(2508), 1, + ACTIONS(2557), 1, anon_sym_defined, - ACTIONS(2614), 1, + ACTIONS(2671), 1, sym_number_literal, - ACTIONS(2510), 2, + ACTIONS(2559), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2512), 2, + ACTIONS(2561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2516), 5, + ACTIONS(2565), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(970), 7, + STATE(1013), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -76052,73 +78364,160 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [36965] = 3, - ACTIONS(3), 1, + [38330] = 11, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2618), 5, - anon_sym_SLASH, + ACTIONS(2591), 1, + anon_sym_LF, + ACTIONS(2677), 1, anon_sym_PIPE, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2681), 1, anon_sym_AMP, + ACTIONS(2593), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2685), 4, anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2616), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + [38373] = 12, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_PIPE, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2681), 1, + anon_sym_AMP, + ACTIONS(2689), 1, + anon_sym_LF, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2685), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [38418] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + anon_sym_SLASH, + ACTIONS(2529), 1, anon_sym_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_PIPE, + ACTIONS(2535), 1, anon_sym_CARET, + ACTIONS(2537), 1, + anon_sym_AMP, + ACTIONS(2695), 1, + anon_sym_RPAREN, + ACTIONS(2523), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2525), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36993] = 14, - ACTIONS(3), 1, + [38467] = 3, + ACTIONS(1895), 1, + anon_sym_LF, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(1897), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, 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(2458), 2, + 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, + [38494] = 3, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LF, + ACTIONS(2629), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2460), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2474), 2, + 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, - 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, - ACTIONS(2620), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37043] = 3, - ACTIONS(2484), 1, + [38521] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2619), 1, anon_sym_LF, - ACTIONS(2534), 18, + ACTIONS(2621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76137,25 +78536,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37070] = 10, + [38548] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2299), 1, anon_sym_STAR, - STATE(1043), 1, + STATE(1076), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1125), 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, + [38589] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2297), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + anon_sym_STAR, + STATE(1080), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1125), 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, + [38630] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1050), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -76168,49 +78629,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37111] = 3, - ACTIONS(2484), 1, + [38671] = 12, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2677), 1, + anon_sym_PIPE, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2681), 1, + anon_sym_AMP, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2697), 1, anon_sym_LF, - ACTIONS(2542), 18, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 3, 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, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37138] = 10, + [38716] = 10, 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(1080), 1, + STATE(1096), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -76223,165 +78693,79 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - 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, - [37251] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LF, - ACTIONS(2560), 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, - [37278] = 14, + [38757] = 10, 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, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + 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, - [37327] = 10, + ACTIONS(2027), 1, + anon_sym_LBRACK, + STATE(1154), 1, + sym__abstract_declarator, + STATE(1166), 1, + sym_parameter_list, + ACTIONS(2699), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1020), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2701), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38798] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1642), 1, anon_sym_STAR, - ACTIONS(1969), 1, + ACTIONS(2027), 1, anon_sym_LBRACK, - STATE(1127), 1, - sym_parameter_list, - STATE(1145), 1, + STATE(1155), 1, sym__abstract_declarator, - ACTIONS(2646), 2, + STATE(1166), 1, + sym_parameter_list, + ACTIONS(2703), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(996), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1131), 4, + STATE(1163), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2648), 6, + ACTIONS(2701), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [37368] = 4, - ACTIONS(2484), 1, + [38839] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2649), 1, anon_sym_LF, - ACTIONS(2626), 3, + ACTIONS(2651), 18, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -76395,74 +78779,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37397] = 3, - ACTIONS(2484), 1, + [38866] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2568), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1640), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2027), 1, + anon_sym_LBRACK, + STATE(1132), 1, + sym__abstract_declarator, + STATE(1166), 1, + sym_parameter_list, + ACTIONS(2021), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1017), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2701), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [38907] = 12, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2677), 1, anon_sym_PIPE, + ACTIONS(2679), 1, anon_sym_CARET, + ACTIONS(2681), 1, 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, - [37424] = 12, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2566), 1, - anon_sym_LF, - ACTIONS(2568), 1, + ACTIONS(2691), 1, anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, + ACTIONS(2693), 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, + ACTIONS(2705), 1, + anon_sym_LF, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37469] = 3, - ACTIONS(2484), 1, + [38952] = 4, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2616), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2618), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2593), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -76476,246 +78868,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37496] = 12, - ACTIONS(2484), 1, + [38981] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1063), 1, + sym__declarator, + STATE(1472), 1, + sym_ms_based_modifier, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1112), 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, + [39022] = 12, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2677), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2650), 1, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2707), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37541] = 12, - ACTIONS(2484), 1, + [39067] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2297), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + anon_sym_STAR, + STATE(1074), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1125), 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, + [39108] = 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(1094), 1, + sym__type_declarator, + STATE(1454), 1, + sym_ms_based_modifier, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1147), 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, + [39149] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2591), 1, + anon_sym_LF, + ACTIONS(2593), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, 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(2652), 1, - anon_sym_LF, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2640), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37586] = 11, - ACTIONS(2484), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39176] = 12, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2632), 1, + ACTIONS(2593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2677), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2568), 2, - anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, anon_sym_AMP_AMP, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37629] = 10, - ACTIONS(2484), 1, + [39221] = 10, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2568), 3, + ACTIONS(2593), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37670] = 9, - ACTIONS(2484), 1, + [39262] = 9, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2568), 4, + ACTIONS(2593), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37709] = 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(1058), 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, - [37750] = 8, - ACTIONS(2484), 1, + [39301] = 8, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2568), 5, + ACTIONS(2593), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [37787] = 7, - ACTIONS(2484), 1, + [39338] = 7, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2591), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(2568), 7, + ACTIONS(2593), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -76723,22 +79169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [37822] = 6, - ACTIONS(2484), 1, + [39373] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2639), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2641), 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(2568), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -76750,12 +79191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [37855] = 3, - ACTIONS(1830), 1, - anon_sym_LF, - ACTIONS(2484), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39400] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(1832), 18, + ACTIONS(2595), 1, + anon_sym_LF, + ACTIONS(2597), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76774,50 +79217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37882] = 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(1127), 1, - sym_parameter_list, - STATE(1146), 1, - sym__abstract_declarator, - ACTIONS(2654), 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, - [37923] = 5, - ACTIONS(2484), 1, + [39427] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2577), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2579), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2626), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2568), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -76831,250 +79241,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [37954] = 12, - ACTIONS(2484), 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(2656), 1, - anon_sym_LF, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2640), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [37999] = 3, - ACTIONS(2484), 1, + [39454] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 1, - anon_sym_LF, - ACTIONS(2606), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2527), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2529), 1, anon_sym_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_AMP_AMP, + ACTIONS(2533), 1, anon_sym_PIPE, + ACTIONS(2535), 1, anon_sym_CARET, + ACTIONS(2537), 1, 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, - [38026] = 3, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_LF, - ACTIONS(2610), 18, + ACTIONS(2709), 1, + anon_sym_RPAREN, + ACTIONS(2523), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2525), 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(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2541), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2543), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(2545), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38053] = 10, + [39503] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1642), 1, anon_sym_STAR, - ACTIONS(1969), 1, + ACTIONS(2027), 1, anon_sym_LBRACK, - STATE(1115), 1, + STATE(1162), 1, sym__abstract_declarator, - STATE(1127), 1, + STATE(1166), 1, sym_parameter_list, - ACTIONS(2134), 2, + ACTIONS(2711), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(876), 2, + STATE(988), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1131), 4, + STATE(1163), 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, + ACTIONS(2701), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38135] = 10, - ACTIONS(3), 1, + [39544] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2581), 1, + anon_sym_LF, + ACTIONS(2583), 18, + anon_sym_DASH, + anon_sym_PLUS, 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, - sym_comment, - ACTIONS(2628), 1, + anon_sym_SLASH, + anon_sym_PERCENT, 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(2660), 1, - anon_sym_LF, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2640), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38221] = 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(1067), 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, - [38262] = 3, - ACTIONS(2484), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39571] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2587), 1, anon_sym_LF, - ACTIONS(2564), 18, + ACTIONS(2589), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -77093,30 +79355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [38289] = 10, + [39598] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2290), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2292), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1088), 1, - sym__type_declarator, - STATE(1300), 1, + STATE(1055), 1, + sym__declarator, + STATE(1472), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(884), 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, + STATE(1112), 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, @@ -77124,285 +79386,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38330] = 10, - ACTIONS(3), 1, + [39639] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(1629), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(2591), 1, + anon_sym_LF, + ACTIONS(2673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2675), 3, 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, + ACTIONS(2593), 13, 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, + [39670] = 12, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2677), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2666), 1, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2713), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38465] = 12, - ACTIONS(2484), 1, + [39715] = 6, + ACTIONS(2491), 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(2591), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2593), 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, - [38510] = 12, - ACTIONS(2484), 1, + [39748] = 12, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2677), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2670), 1, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [38555] = 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(1059), 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, - [38596] = 12, - ACTIONS(2484), 1, + [39793] = 12, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2630), 1, - anon_sym_AMP_AMP, - ACTIONS(2632), 1, + ACTIONS(2677), 1, anon_sym_PIPE, - ACTIONS(2634), 1, + ACTIONS(2679), 1, anon_sym_CARET, - ACTIONS(2636), 1, + ACTIONS(2681), 1, anon_sym_AMP, - ACTIONS(2672), 1, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2717), 1, anon_sym_LF, - ACTIONS(2624), 2, + ACTIONS(2673), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2638), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2642), 2, + ACTIONS(2687), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2626), 3, + ACTIONS(2675), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2640), 4, + ACTIONS(2685), 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, + [39838] = 10, 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(1082), 1, + STATE(1099), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(876), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -77415,98 +79569,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38723] = 10, + [39879] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(1640), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1642), 1, anon_sym_STAR, - ACTIONS(1969), 1, + ACTIONS(2027), 1, anon_sym_LBRACK, - STATE(1119), 1, + STATE(1146), 1, sym__abstract_declarator, - STATE(1127), 1, + STATE(1166), 1, sym_parameter_list, - ACTIONS(1963), 2, + ACTIONS(2251), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(994), 2, + STATE(884), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1131), 4, + STATE(1163), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2648), 6, + ACTIONS(2701), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38764] = 7, + [39920] = 12, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_PIPE, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2681), 1, + anon_sym_AMP, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2719), 1, + anon_sym_LF, + ACTIONS(2673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2685), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [39965] = 12, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_PIPE, + ACTIONS(2679), 1, + anon_sym_CARET, + ACTIONS(2681), 1, + anon_sym_AMP, + ACTIONS(2691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2693), 1, + anon_sym_AMP_AMP, + ACTIONS(2721), 1, + anon_sym_LF, + ACTIONS(2673), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2675), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2685), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [40010] = 10, ACTIONS(3), 1, sym_comment, - STATE(1013), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(2676), 2, + ACTIONS(1640), 1, anon_sym_LPAREN2, + ACTIONS(1642), 1, anon_sym_STAR, - ACTIONS(2681), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1011), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2678), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2674), 8, - anon_sym___based, + ACTIONS(2027), 1, + anon_sym_LBRACK, + STATE(1166), 1, + sym_parameter_list, + STATE(1169), 1, + sym__abstract_declarator, + ACTIONS(2723), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(884), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1163), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2701), 6, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - sym_identifier, - [38798] = 7, + [40051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 1, + ACTIONS(2179), 1, sym_primitive_type, - ACTIONS(2684), 1, + ACTIONS(2725), 1, sym_identifier, - STATE(727), 1, + STATE(754), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2105), 4, + ACTIONS(2177), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2101), 5, + ACTIONS(2173), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2103), 6, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2175), 6, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + [40085] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1023), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(2729), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2734), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1022), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2731), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2727), 8, + anon_sym___based, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, anon_sym__Noreturn, - [38832] = 3, + sym_identifier, + [40119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 2, + ACTIONS(2739), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2686), 13, + ACTIONS(2737), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -77520,13 +79771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [38855] = 3, + [40142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 2, + ACTIONS(2743), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2690), 13, + ACTIONS(2741), 13, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -77540,600 +79791,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, sym_identifier, - [38878] = 11, + [40165] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_STAR, - ACTIONS(2694), 1, + ACTIONS(2745), 1, anon_sym_SEMI, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - STATE(1048), 1, + STATE(1042), 1, sym__field_declarator, - STATE(1403), 1, + STATE(1357), 1, sym_bitfield_clause, - STATE(1405), 1, + STATE(1359), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1125), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38916] = 11, + [40203] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_STAR, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - ACTIONS(2698), 1, + ACTIONS(2749), 1, anon_sym_SEMI, - STATE(1033), 1, + STATE(1062), 1, sym__field_declarator, - STATE(1405), 1, + STATE(1359), 1, sym_ms_based_modifier, - STATE(1409), 1, + STATE(1465), 1, sym_bitfield_clause, - STATE(1107), 5, + STATE(1125), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38954] = 11, + [40241] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_STAR, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - ACTIONS(2700), 1, + ACTIONS(2751), 1, anon_sym_SEMI, - STATE(1049), 1, + STATE(1048), 1, sym__field_declarator, - STATE(1352), 1, - sym_bitfield_clause, - STATE(1405), 1, + STATE(1359), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1391), 1, + sym_bitfield_clause, + STATE(1125), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [38992] = 9, + [40279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1062), 1, + STATE(1039), 1, sym__declarator, - STATE(1205), 1, + STATE(1214), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39024] = 9, + [40311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1023), 1, + STATE(1101), 1, sym__declarator, - STATE(1227), 1, + STATE(1331), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39056] = 9, + [40343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1073), 1, sym__declarator, - STATE(1227), 1, + STATE(1272), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39088] = 9, + [40375] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1030), 1, + STATE(1069), 1, sym__declarator, - STATE(1190), 1, + STATE(1243), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39120] = 9, + [40407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1074), 1, + STATE(1035), 1, sym__declarator, - STATE(1255), 1, + STATE(1246), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39152] = 12, + [40439] = 9, 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, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 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, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1040), 1, + sym__declarator, + STATE(1272), 1, + sym_init_declarator, + STATE(1472), 1, + sym_ms_based_modifier, + STATE(1112), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [40471] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(372), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2757), 1, + anon_sym_SEMI, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2761), 1, anon_sym_EQ, - ACTIONS(2712), 1, - anon_sym_SEMI, - STATE(322), 1, + STATE(363), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1185), 1, + STATE(1198), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39228] = 12, + [40509] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(119), 1, anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2761), 1, anon_sym_EQ, - ACTIONS(2714), 1, + ACTIONS(2763), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(123), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1211), 1, + STATE(1258), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39266] = 9, - 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(1025), 1, - sym__declarator, - STATE(1205), 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, - [39298] = 9, + [40547] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1034), 1, sym__declarator, - STATE(1192), 1, + STATE(1243), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39330] = 9, + [40579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1063), 1, + STATE(1071), 1, sym__declarator, - STATE(1192), 1, + STATE(1214), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39362] = 9, + [40611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1064), 1, + STATE(1070), 1, sym__declarator, - STATE(1190), 1, + STATE(1246), 1, sym_init_declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39394] = 12, + [40643] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(117), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(2702), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2761), 1, anon_sym_EQ, - ACTIONS(2716), 1, + ACTIONS(2765), 1, anon_sym_SEMI, - STATE(116), 1, + STATE(367), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1201), 1, + STATE(1206), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39432] = 7, + [40681] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1050), 1, + ACTIONS(2761), 1, + anon_sym_EQ, + ACTIONS(2767), 1, + anon_sym_SEMI, + STATE(314), 1, + sym_compound_statement, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1196), 1, + aux_sym_declaration_repeat1, + STATE(1075), 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, + [40719] = 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(1086), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39488] = 11, + [40748] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2720), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - ACTIONS(2722), 1, + ACTIONS(2771), 1, anon_sym_SEMI, - ACTIONS(2724), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1139), 1, + STATE(1156), 1, aux_sym_field_declaration_repeat1, - STATE(1447), 1, + STATE(1399), 1, sym_bitfield_clause, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39523] = 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(1085), 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, - [39552] = 8, + [40783] = 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(1112), 1, + STATE(1093), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39581] = 8, + [40812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1097), 1, + STATE(1114), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39610] = 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(1081), 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, - [39639] = 8, + [40841] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1111), 1, + STATE(1129), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [39668] = 8, + [40870] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1091), 1, - sym__declarator, - STATE(1379), 1, + STATE(1089), 1, + sym__type_declarator, + STATE(1454), 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, + STATE(1147), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [40899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2777), 1, anon_sym___attribute__, - ACTIONS(2731), 1, + ACTIONS(2779), 1, anon_sym_LBRACK, - STATE(1040), 2, + STATE(1057), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2726), 7, + ACTIONS(2775), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78141,351 +80330,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [39720] = 8, + [40922] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2747), 1, + anon_sym_COLON, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2769), 1, + anon_sym_COMMA, + ACTIONS(2773), 1, + anon_sym_LBRACK, + ACTIONS(2781), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_parameter_list, + STATE(1149), 1, + aux_sym_field_declaration_repeat1, + STATE(1384), 1, + sym_bitfield_clause, + STATE(1090), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [40957] = 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(1086), 1, + STATE(1095), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39749] = 8, + [40986] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1068), 1, + sym_parameter_list, + STATE(1075), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2783), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [41013] = 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(1071), 1, + STATE(1091), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39778] = 7, + [41042] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2297), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + anon_sym_STAR, + STATE(1100), 1, + sym__field_declarator, + STATE(1359), 1, + sym_ms_based_modifier, + STATE(1125), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [41071] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1110), 1, + sym__declarator, + STATE(1472), 1, + sym_ms_based_modifier, + STATE(1112), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [41100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2790), 1, + anon_sym_LBRACK, + STATE(1054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2785), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [41123] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2733), 5, + ACTIONS(2792), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [39805] = 8, + [41150] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(2282), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2297), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_STAR, - STATE(1109), 1, + STATE(1130), 1, sym__field_declarator, - STATE(1405), 1, + STATE(1359), 1, sym_ms_based_modifier, - STATE(1107), 5, + STATE(1125), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [39834] = 8, + [41179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 1, + anon_sym___attribute__, + ACTIONS(2799), 1, + anon_sym_LBRACK, + STATE(1057), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(2794), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [41202] = 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(1079), 1, + STATE(1113), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39863] = 8, + [41231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1068), 1, + sym_parameter_list, + STATE(1075), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2801), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [41258] = 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(1089), 1, + STATE(1120), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39892] = 8, + [41287] = 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(1087), 1, + STATE(1084), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [39921] = 11, + [41316] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2720), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - ACTIONS(2724), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2803), 1, anon_sym_SEMI, - STATE(1106), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1135), 1, + STATE(1170), 1, aux_sym_field_declaration_repeat1, - STATE(1397), 1, + STATE(1451), 1, sym_bitfield_clause, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [39956] = 11, + [41351] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2720), 1, - anon_sym_COMMA, - ACTIONS(2724), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(1106), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1126), 1, - aux_sym_field_declaration_repeat1, - STATE(1347), 1, - sym_bitfield_clause, - STATE(1077), 2, + STATE(1075), 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(2805), 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, + [41378] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2305), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2307), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2309), 1, anon_sym_STAR, - STATE(1101), 1, + STATE(1092), 1, + sym__type_declarator, + STATE(1454), 1, + sym_ms_based_modifier, + STATE(1147), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [41407] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1413), 1, + anon_sym___based, + ACTIONS(2019), 1, + sym_identifier, + ACTIONS(2301), 1, + anon_sym_LPAREN2, + ACTIONS(2303), 1, + anon_sym_STAR, + STATE(1104), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40043] = 8, + [41436] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, + ACTIONS(1413), 1, anon_sym___based, - ACTIONS(1961), 1, + ACTIONS(2019), 1, sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2301), 1, anon_sym_LPAREN2, - ACTIONS(2276), 1, + ACTIONS(2303), 1, anon_sym_STAR, - STATE(1093), 1, + STATE(1109), 1, sym__declarator, - STATE(1379), 1, + STATE(1472), 1, sym_ms_based_modifier, - STATE(1098), 5, + STATE(1112), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [40072] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2750), 1, - anon_sym_LBRACK, - STATE(1053), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2745), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [40095] = 8, + [41465] = 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(1096), 1, + STATE(1098), 1, sym__type_declarator, - STATE(1300), 1, + STATE(1454), 1, sym_ms_based_modifier, - STATE(1123), 5, + STATE(1147), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [40124] = 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(1075), 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, - [40153] = 7, + [41494] = 5, 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, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2752), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40180] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2741), 1, + ACTIONS(2777), 1, anon_sym___attribute__, - ACTIONS(2756), 1, + ACTIONS(2809), 1, anon_sym_LBRACK, - STATE(1040), 2, + STATE(1047), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(2754), 7, + ACTIONS(2807), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78493,66 +80764,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [40203] = 7, + [41517] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2757), 1, + anon_sym_SEMI, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1050), 1, + ACTIONS(2761), 1, + anon_sym_EQ, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1198), 1, + aux_sym_declaration_repeat1, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2758), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40230] = 7, + [41549] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1106), 1, + ACTIONS(2761), 1, + anon_sym_EQ, + ACTIONS(2763), 1, + anon_sym_SEMI, + STATE(1068), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1258), 1, + aux_sym_declaration_repeat1, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2760), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [40256] = 3, + [41581] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, - anon_sym_LBRACK, - ACTIONS(2762), 9, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2753), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2755), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, anon_sym_EQ, - anon_sym_COLON, - [40274] = 3, + ACTIONS(2765), 1, + anon_sym_SEMI, + STATE(1068), 1, + sym_parameter_list, + STATE(1206), 1, + aux_sym_declaration_repeat1, + STATE(1075), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [41613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(2813), 1, anon_sym_LBRACK, - ACTIONS(2766), 9, + ACTIONS(2811), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -78562,538 +80845,593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [40292] = 10, + [41631] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, + ACTIONS(2761), 1, anon_sym_EQ, - ACTIONS(2714), 1, + ACTIONS(2767), 1, anon_sym_SEMI, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1211), 1, + STATE(1196), 1, aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40324] = 10, + [41663] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - ACTIONS(2712), 1, - anon_sym_SEMI, - STATE(1050), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1185), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40356] = 10, + ACTIONS(2815), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [41689] = 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(2708), 1, + ACTIONS(2819), 1, anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_EQ, - ACTIONS(2716), 1, - anon_sym_SEMI, - STATE(1050), 1, - sym_parameter_list, - STATE(1201), 1, - aux_sym_declaration_repeat1, - STATE(1070), 2, + STATE(1054), 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(2817), 6, 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, + [41711] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2774), 4, + ACTIONS(2821), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [40432] = 7, + [41737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2823), 1, + anon_sym_RPAREN, + ACTIONS(2825), 1, + anon_sym_COLON, + STATE(1219), 1, + sym_gnu_asm_operand_list, + STATE(467), 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, + [41761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, anon_sym_LBRACK, - STATE(1106), 1, - sym_parameter_list, - STATE(1077), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2776), 4, + ACTIONS(2827), 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, anon_sym_COLON, - [40458] = 10, + [41779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2833), 1, + anon_sym_LBRACK, + ACTIONS(2831), 9, anon_sym_COMMA, - ACTIONS(2704), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2706), 1, anon_sym_SEMI, - ACTIONS(2708), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + anon_sym_COLON, + [41797] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1106), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1077), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2778), 4, + ACTIONS(2835), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [40516] = 5, + [41823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 1, + anon_sym_LBRACK, + STATE(1181), 1, + sym_gnu_asm_operand, + STATE(1418), 1, + sym_string_literal, + ACTIONS(2837), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41847] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2782), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1053), 2, + STATE(1126), 1, + sym_parameter_list, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2780), 6, + ACTIONS(2841), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [40538] = 9, + anon_sym_COLON, + [41873] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_COLON, + ACTIONS(2843), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_gnu_asm_operand_list, + STATE(467), 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, + [41897] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2786), 1, + ACTIONS(2847), 1, anon_sym_SEMI, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1218), 1, + STATE(1231), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40567] = 9, + [41926] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2851), 1, + sym_identifier, + ACTIONS(2855), 1, + sym_system_lib_string, + STATE(1348), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2853), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41947] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2790), 1, + ACTIONS(2857), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1194), 1, + STATE(1265), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40596] = 5, + [41976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(2859), 1, sym_identifier, - ACTIONS(2796), 1, + ACTIONS(2861), 1, sym_system_lib_string, - STATE(1318), 2, + STATE(1513), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2794), 5, + ACTIONS(2853), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [40617] = 8, + [41997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2849), 1, + anon_sym_LBRACK, + STATE(1143), 1, + sym_parameter_list, + STATE(1103), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2863), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [42022] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 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, + ACTIONS(2845), 1, anon_sym_COMMA, + ACTIONS(2849), 1, + anon_sym_LBRACK, + ACTIONS(2865), 1, anon_sym_SEMI, - STATE(1070), 2, + STATE(1143), 1, + sym_parameter_list, + STATE(1239), 1, + aux_sym_type_definition_repeat2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40644] = 7, + [42051] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2724), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - STATE(1106), 1, - sym_parameter_list, - STATE(1077), 2, + STATE(1054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2800), 3, + ACTIONS(2867), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, - [40669] = 7, + [42072] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1125), 1, + ACTIONS(2871), 1, + anon_sym_SEMI, + STATE(1143), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1222), 1, + aux_sym_type_definition_repeat2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2802), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [40694] = 5, + [42101] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1053), 2, + ACTIONS(2873), 1, + anon_sym_SEMI, + STATE(1143), 1, + sym_parameter_list, + STATE(1269), 1, + aux_sym_type_definition_repeat2, + STATE(1103), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 1, - sym_identifier, - ACTIONS(2810), 1, - sym_system_lib_string, - STATE(1432), 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, - [40736] = 9, + [42130] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2812), 1, + ACTIONS(2875), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1179), 1, + STATE(1235), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40765] = 7, + [42159] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2814), 3, + ACTIONS(2877), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [40790] = 9, + [42184] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2816), 1, + ACTIONS(2879), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1183), 1, + STATE(1250), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40819] = 7, + [42213] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2818), 3, + ACTIONS(2881), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [40844] = 5, - 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, + [42238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2883), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2885), 1, sym_system_lib_string, - STATE(1448), 2, + STATE(1518), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(2794), 5, + ACTIONS(2853), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [40886] = 9, + [42259] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2828), 1, + ACTIONS(2887), 1, anon_sym_SEMI, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1178), 1, + STATE(1215), 1, aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40915] = 9, + [42288] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - ACTIONS(2830), 1, - anon_sym_SEMI, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - STATE(1172), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40944] = 9, + ACTIONS(2889), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [42313] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, - anon_sym_SEMI, - STATE(1125), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1204), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [40973] = 7, + ACTIONS(2891), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [42338] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1125), 1, + ACTIONS(2761), 1, + anon_sym_EQ, + STATE(1068), 1, sym_parameter_list, - STATE(1094), 2, + ACTIONS(2893), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1075), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + sym_system_lib_string, + STATE(1415), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(2853), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2901), 1, + anon_sym_LBRACK, + STATE(1054), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2834), 3, + ACTIONS(2899), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [40998] = 9, + [42406] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(2788), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2836), 1, - anon_sym_SEMI, - STATE(1125), 1, + STATE(360), 1, + sym_compound_statement, + STATE(1068), 1, sym_parameter_list, - STATE(1208), 1, - aux_sym_type_definition_repeat2, - STATE(1094), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41027] = 3, + [42432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2905), 1, anon_sym_LBRACK, - ACTIONS(2838), 7, + ACTIONS(2903), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79101,30 +81439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41043] = 8, + [42448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(2909), 1, + anon_sym_LBRACK, + ACTIONS(2907), 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, + [42464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(2842), 7, + ACTIONS(2911), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79132,45 +81465,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41085] = 8, + [42480] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, + anon_sym_LBRACK, + STATE(1068), 1, + sym_parameter_list, + ACTIONS(2915), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1075), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42504] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(357), 1, + STATE(346), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41111] = 5, + [42530] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2848), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(1053), 2, + STATE(329), 1, + sym_compound_statement, + STATE(1068), 1, + sym_parameter_list, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2846), 4, + [42556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + anon_sym_LBRACK, + ACTIONS(2917), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [41131] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [42572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2923), 1, anon_sym_LBRACK, - ACTIONS(2850), 7, + ACTIONS(2921), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79178,47 +81544,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41147] = 7, + [42588] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1125), 1, + STATE(1143), 1, sym_parameter_list, - ACTIONS(2854), 2, + ACTIONS(2925), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1094), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41171] = 8, + [42612] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(372), 1, + ACTIONS(119), 1, anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(248), 1, + STATE(114), 1, sym_compound_statement, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41197] = 3, + [42638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2929), 1, anon_sym_LBRACK, - ACTIONS(2856), 7, + ACTIONS(2927), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79226,3856 +81592,4228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [41213] = 7, + [42654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2839), 1, anon_sym_LBRACK, - STATE(1050), 1, - sym_parameter_list, - ACTIONS(2860), 2, - anon_sym_COMMA, + STATE(1253), 1, + sym_gnu_asm_operand, + STATE(1418), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42674] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1192), 1, + sym_string_literal, + ACTIONS(2931), 2, anon_sym_RPAREN, - STATE(1070), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41237] = 3, + anon_sym_COLON, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2935), 1, anon_sym_LBRACK, - ACTIONS(2862), 7, + ACTIONS(2933), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41253] = 8, + anon_sym_COLON, + [42707] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1077), 1, + sym_string_literal, + STATE(1225), 1, + sym_concatenated_string, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42724] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(324), 1, - anon_sym_LBRACE, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(327), 1, - sym_compound_statement, - STATE(1050), 1, + ACTIONS(2937), 1, + anon_sym_RPAREN, + STATE(1143), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1103), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41279] = 3, + [42747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - anon_sym_LBRACK, - ACTIONS(2866), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [41295] = 3, + STATE(1083), 1, + sym_string_literal, + STATE(1202), 1, + sym_concatenated_string, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2941), 1, anon_sym_LBRACK, - ACTIONS(2870), 6, + ACTIONS(2939), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41310] = 3, + [42779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(2945), 1, anon_sym_LBRACK, - ACTIONS(2874), 6, + ACTIONS(2943), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41325] = 3, + [42794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(2949), 1, anon_sym_LBRACK, - ACTIONS(2878), 6, + ACTIONS(2947), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41340] = 3, + [42809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(2953), 1, anon_sym_LBRACK, - ACTIONS(2882), 6, + ACTIONS(2951), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41355] = 3, + [42824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(2886), 6, + ACTIONS(2955), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41370] = 3, + [42839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(2961), 1, anon_sym_LBRACK, - ACTIONS(2890), 6, + ACTIONS(2959), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41385] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2724), 1, - anon_sym_LBRACK, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(1106), 1, - sym_parameter_list, - STATE(1077), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [41408] = 3, + [42854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(2965), 1, anon_sym_LBRACK, - ACTIONS(2896), 6, + ACTIONS(2963), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41423] = 7, + [42869] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2708), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2900), 1, + ACTIONS(2967), 1, anon_sym_RPAREN, - STATE(1050), 1, + STATE(1068), 1, sym_parameter_list, - STATE(1070), 2, + STATE(1075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41446] = 7, + [42892] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2788), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2902), 1, + ACTIONS(2969), 1, anon_sym_RPAREN, - STATE(1125), 1, + STATE(1126), 1, sym_parameter_list, - STATE(1094), 2, + STATE(1090), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [41469] = 3, + [42915] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2971), 1, + anon_sym_LBRACK, + ACTIONS(2974), 1, + anon_sym_EQ, + ACTIONS(2976), 1, + anon_sym_DOT, + STATE(1131), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [42933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(2904), 6, + STATE(1157), 1, + sym_parameter_list, + ACTIONS(2979), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [41484] = 3, + [42951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_LPAREN2, + STATE(1145), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(2985), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [42967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2989), 1, anon_sym_LBRACK, - ACTIONS(2908), 5, + ACTIONS(2987), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41498] = 5, + [42981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2993), 1, anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2912), 3, + ACTIONS(2991), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [41516] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [42995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(2916), 5, + ACTIONS(2995), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41530] = 5, + [43009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 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(3), 1, - sym_comment, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(2928), 1, - anon_sym_EQ, - ACTIONS(2930), 1, - anon_sym_DOT, - STATE(1117), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [41566] = 5, + STATE(1197), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(3001), 1, anon_sym_LBRACK, - STATE(1148), 1, - sym_parameter_list, - ACTIONS(2932), 3, + ACTIONS(2999), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [41584] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [43037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(3005), 1, anon_sym_LBRACK, - ACTIONS(2934), 5, + ACTIONS(3003), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41598] = 3, + [43051] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1499), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(3009), 1, anon_sym_LBRACK, - ACTIONS(2938), 5, + ACTIONS(3007), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41612] = 3, + [43079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3011), 1, + anon_sym_LPAREN2, + STATE(1142), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3013), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [43095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(3018), 1, anon_sym_LBRACK, - ACTIONS(2942), 5, + ACTIONS(3016), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41626] = 3, + [43109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(1421), 1, anon_sym_LBRACK, - ACTIONS(2946), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3020), 1, + anon_sym_EQ, + ACTIONS(3022), 1, + anon_sym_DOT, + STATE(1131), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [43127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [41640] = 3, + STATE(1142), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(2985), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [43143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(2950), 5, + STATE(1157), 1, + sym_parameter_list, + ACTIONS(3026), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [41654] = 3, + anon_sym_COLON, + [43161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(2954), 5, + ACTIONS(3028), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [41668] = 6, + [43175] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + ACTIONS(3034), 1, + anon_sym_COLON_COLON, + STATE(1322), 1, + sym_argument_list, + ACTIONS(3032), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [43192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, + ACTIONS(2747), 1, anon_sym_COLON, - ACTIONS(2720), 1, + ACTIONS(2769), 1, anon_sym_COMMA, - ACTIONS(2958), 1, + ACTIONS(3036), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(1174), 1, aux_sym_field_declaration_repeat1, - STATE(1340), 1, + STATE(1369), 1, sym_bitfield_clause, - [41687] = 2, + [43211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2379), 1, + anon_sym_LBRACE, + ACTIONS(3038), 1, + sym_identifier, + STATE(899), 1, + sym_field_declaration_list, + STATE(1267), 1, + sym_ms_declspec_modifier, + [43230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 5, + ACTIONS(3040), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41698] = 5, + [43241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2379), 1, + anon_sym_LBRACE, + ACTIONS(3042), 1, + sym_identifier, + STATE(900), 1, + sym_field_declaration_list, + STATE(1268), 1, + sym_ms_declspec_modifier, + [43260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2964), 1, - anon_sym_COLON_COLON, - STATE(1282), 1, - sym_argument_list, - ACTIONS(2962), 2, + ACTIONS(2981), 1, + anon_sym_LBRACK, + STATE(1157), 1, + sym_parameter_list, + ACTIONS(2915), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [41715] = 5, + anon_sym_RPAREN, + [43277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1157), 1, sym_parameter_list, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_RPAREN, anon_sym_COLON, - [41732] = 5, + [43294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1157), 1, sym_parameter_list, - ACTIONS(2860), 2, - anon_sym_COMMA, + ACTIONS(3046), 2, anon_sym_RPAREN, - [41749] = 2, + anon_sym_COLON, + [43311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_COLON, + ACTIONS(2769), 1, + anon_sym_COMMA, + ACTIONS(3048), 1, + anon_sym_SEMI, + STATE(1174), 1, + aux_sym_field_declaration_repeat1, + STATE(1450), 1, + sym_bitfield_clause, + [43330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 5, + ACTIONS(3050), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41760] = 2, + [43341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 5, + ACTIONS(3052), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41771] = 2, + [43352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 5, + ACTIONS(3054), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41782] = 2, + [43363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 5, + ACTIONS(3056), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41793] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2720), 1, - anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_field_declaration_repeat1, - STATE(1390), 1, - sym_bitfield_clause, - [41812] = 2, + [43374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 5, + ACTIONS(3058), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41823] = 2, + [43385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2755), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_LBRACK, + STATE(1157), 1, + sym_parameter_list, + ACTIONS(3060), 2, + anon_sym_RPAREN, anon_sym_COLON, - [41834] = 2, + [43402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 5, + ACTIONS(3062), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41845] = 6, + [43413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, - anon_sym_COLON, - ACTIONS(2720), 1, + ACTIONS(3064), 5, anon_sym_COMMA, - ACTIONS(2984), 1, - anon_sym_SEMI, - STATE(1152), 1, - aux_sym_field_declaration_repeat1, - STATE(1467), 1, - sym_bitfield_clause, - [41864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, + anon_sym_RPAREN, 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, + [43424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2988), 5, + ACTIONS(3066), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41892] = 2, + [43435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 5, + ACTIONS(3068), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41903] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - sym_identifier, - STATE(891), 1, - sym_field_declaration_list, - STATE(1223), 1, - sym_ms_declspec_modifier, - [41922] = 2, + [43446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 5, + ACTIONS(3070), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [41933] = 5, + [43457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(3072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + [43468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2755), 1, anon_sym_LPAREN2, - ACTIONS(2914), 1, + ACTIONS(2981), 1, anon_sym_LBRACK, - STATE(1148), 1, + STATE(1157), 1, sym_parameter_list, - ACTIONS(2998), 2, + ACTIONS(3074), 2, anon_sym_RPAREN, anon_sym_COLON, - [41967] = 6, + [43485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(3000), 1, - sym_identifier, - STATE(892), 1, - sym_field_declaration_list, - STATE(1168), 1, - sym_ms_declspec_modifier, - [41986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3002), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, + ACTIONS(2747), 1, anon_sym_COLON, - [41997] = 5, - ACTIONS(2484), 1, + ACTIONS(2769), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + anon_sym_SEMI, + STATE(1174), 1, + aux_sym_field_declaration_repeat1, + STATE(1438), 1, + sym_bitfield_clause, + [43504] = 5, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LF, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + sym_preproc_arg, + STATE(1277), 1, + sym_preproc_params, + [43520] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(3006), 1, + ACTIONS(3086), 1, aux_sym_string_literal_token1, - ACTIONS(3008), 1, + ACTIONS(3088), 1, sym_escape_sequence, - STATE(1156), 1, + STATE(1179), 1, aux_sym_string_literal_repeat1, - [42013] = 5, - ACTIONS(2484), 1, + [43536] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3086), 1, aux_sym_string_literal_token1, - ACTIONS(3008), 1, + ACTIONS(3088), 1, sym_escape_sequence, - ACTIONS(3010), 1, + ACTIONS(3090), 1, anon_sym_DQUOTE, - STATE(1156), 1, + STATE(1179), 1, aux_sym_string_literal_repeat1, - [42029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN2, - ACTIONS(2914), 1, - anon_sym_LBRACK, - ACTIONS(3012), 1, - anon_sym_RPAREN, - STATE(1148), 1, - sym_parameter_list, - [42045] = 4, + [43552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3092), 1, anon_sym_COMMA, - STATE(1152), 1, + STATE(1174), 1, aux_sym_field_declaration_repeat1, - ACTIONS(3017), 2, + ACTIONS(3095), 2, anon_sym_SEMI, anon_sym_COLON, - [42059] = 5, - ACTIONS(2484), 1, + [43566] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_LF, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3023), 1, - sym_preproc_arg, - STATE(1274), 1, - sym_preproc_params, - [42075] = 5, - ACTIONS(2484), 1, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3099), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43580] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - anon_sym_LF, - ACTIONS(3027), 1, - sym_preproc_arg, - STATE(1244), 1, - sym_preproc_params, - [42091] = 5, - ACTIONS(2484), 1, + ACTIONS(3086), 1, + aux_sym_string_literal_token1, + ACTIONS(3088), 1, + sym_escape_sequence, + ACTIONS(3101), 1, + anon_sym_DQUOTE, + STATE(1179), 1, + aux_sym_string_literal_repeat1, + [43596] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3031), 1, + ACTIONS(3105), 1, aux_sym_string_literal_token1, - ACTIONS(3033), 1, + ACTIONS(3107), 1, sym_escape_sequence, - STATE(1149), 1, + STATE(1173), 1, aux_sym_string_literal_repeat1, - [42107] = 5, - ACTIONS(2484), 1, + [43612] = 5, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3109), 1, + anon_sym_LF, + ACTIONS(3111), 1, + sym_preproc_arg, + STATE(1285), 1, + sym_preproc_params, + [43628] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3113), 1, anon_sym_DQUOTE, - ACTIONS(3037), 1, + ACTIONS(3115), 1, aux_sym_string_literal_token1, - ACTIONS(3040), 1, + ACTIONS(3118), 1, sym_escape_sequence, - STATE(1156), 1, + STATE(1179), 1, aux_sym_string_literal_repeat1, - [42123] = 5, - ACTIONS(2484), 1, + [43644] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3080), 1, anon_sym_LPAREN, - ACTIONS(3043), 1, + ACTIONS(3121), 1, anon_sym_LF, - ACTIONS(3045), 1, + ACTIONS(3123), 1, sym_preproc_arg, - STATE(1252), 1, + STATE(1289), 1, sym_preproc_params, - [42139] = 5, - ACTIONS(2484), 1, + [43660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3125), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_gnu_asm_operand_list_repeat1, + ACTIONS(3127), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43674] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3080), 1, anon_sym_LPAREN, - ACTIONS(3047), 1, + ACTIONS(3129), 1, anon_sym_LF, - ACTIONS(3049), 1, + ACTIONS(3131), 1, sym_preproc_arg, - STATE(1272), 1, + STATE(1303), 1, sym_preproc_params, - [42155] = 5, - ACTIONS(2484), 1, + [43690] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3080), 1, anon_sym_LPAREN, - ACTIONS(3051), 1, + ACTIONS(3133), 1, anon_sym_LF, - ACTIONS(3053), 1, + ACTIONS(3135), 1, sym_preproc_arg, - STATE(1268), 1, + STATE(1296), 1, + sym_preproc_params, + [43706] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3137), 1, + sym_identifier, + ACTIONS(3139), 1, + anon_sym_COMMA, + ACTIONS(3141), 1, + anon_sym_RBRACE, + STATE(1205), 1, + sym_enumerator, + [43722] = 5, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3143), 1, + anon_sym_LF, + ACTIONS(3145), 1, + sym_preproc_arg, + STATE(1281), 1, sym_preproc_params, - [42171] = 5, - ACTIONS(2484), 1, + [43738] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_RPAREN, + STATE(1157), 1, + sym_parameter_list, + [43754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + STATE(1279), 1, + sym_argument_list, + ACTIONS(3149), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [43768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [43778] = 5, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_DQUOTE, + ACTIONS(3155), 1, + aux_sym_string_literal_token1, + ACTIONS(3157), 1, + sym_escape_sequence, + STATE(1176), 1, + aux_sym_string_literal_repeat1, + [43794] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3159), 1, + anon_sym_DQUOTE, + ACTIONS(3161), 1, aux_sym_string_literal_token1, - ACTIONS(3008), 1, + ACTIONS(3163), 1, sym_escape_sequence, - ACTIONS(3055), 1, - anon_sym_DQUOTE, - STATE(1156), 1, + STATE(1172), 1, aux_sym_string_literal_repeat1, - [42187] = 4, + [43810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - STATE(1288), 1, - sym_argument_list, - ACTIONS(3057), 2, + ACTIONS(3165), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [42201] = 5, + STATE(1191), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3168), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - sym_identifier, - ACTIONS(3061), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - ACTIONS(3063), 1, - anon_sym_RBRACE, - STATE(1198), 1, - sym_enumerator, - [42217] = 5, - ACTIONS(2484), 1, + STATE(1175), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3170), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43838] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, - anon_sym_DQUOTE, - ACTIONS(3067), 1, - aux_sym_string_literal_token1, - ACTIONS(3069), 1, - sym_escape_sequence, - STATE(1150), 1, - aux_sym_string_literal_repeat1, - [42233] = 5, - ACTIONS(2484), 1, + ACTIONS(3172), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_gnu_asm_operand_list_repeat1, + ACTIONS(3175), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3125), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_gnu_asm_operand_list_repeat1, + ACTIONS(3177), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [43866] = 5, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3080), 1, anon_sym_LPAREN, - ACTIONS(3071), 1, + ACTIONS(3179), 1, anon_sym_LF, - ACTIONS(3073), 1, + ACTIONS(3181), 1, sym_preproc_arg, - STATE(1246), 1, + STATE(1329), 1, sym_preproc_params, - [42249] = 5, - ACTIONS(2484), 1, + [43882] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_DQUOTE, - ACTIONS(3077), 1, - aux_sym_string_literal_token1, - ACTIONS(3079), 1, - sym_escape_sequence, - STATE(1160), 1, - aux_sym_string_literal_repeat1, - [42265] = 5, - ACTIONS(2484), 1, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(3183), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [43895] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_LPAREN, - ACTIONS(3081), 1, - anon_sym_LF, - ACTIONS(3083), 1, - sym_preproc_arg, - STATE(1271), 1, - sym_preproc_params, - [42281] = 4, + ACTIONS(3185), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [43904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(2126), 1, + ACTIONS(3187), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [43917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, anon_sym_RBRACE, - STATE(1191), 1, + ACTIONS(3189), 1, + anon_sym_COMMA, + STATE(1249), 1, aux_sym_initializer_list_repeat1, - [42294] = 4, + [43930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(3085), 1, - sym_identifier, - STATE(901), 1, - sym_field_declaration_list, - [42307] = 4, + ACTIONS(3191), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [43939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3195), 1, + anon_sym_EQ, + ACTIONS(3193), 2, 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, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LF, - STATE(968), 1, - sym_preproc_argument_list, - [42333] = 4, + anon_sym_RBRACE, + [43950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - sym_identifier, - ACTIONS(3093), 1, - anon_sym_RBRACE, - STATE(1262), 1, - sym_enumerator, - [42346] = 4, + ACTIONS(2825), 1, + anon_sym_COLON, + ACTIONS(2843), 1, + anon_sym_RPAREN, + STATE(1227), 1, + sym_gnu_asm_operand_list, + [43963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3095), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42359] = 4, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [43976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_RPAREN, - ACTIONS(3097), 1, + ACTIONS(3199), 1, anon_sym_COMMA, - STATE(1173), 1, - aux_sym_preproc_argument_list_repeat1, - [42372] = 4, + ACTIONS(3202), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_parameter_list_repeat1, + [43989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_RPAREN, - ACTIONS(3100), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_argument_list_repeat1, - [42385] = 4, + ACTIONS(3206), 1, + anon_sym_RBRACE, + STATE(1244), 1, + aux_sym_enumerator_list_repeat1, + [44002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3103), 1, - anon_sym_RPAREN, - STATE(1173), 1, - aux_sym_preproc_argument_list_repeat1, - [42398] = 4, + ACTIONS(3208), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [44015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, + ACTIONS(2373), 1, + anon_sym_LBRACE, + ACTIONS(3210), 1, + sym_identifier, + STATE(911), 1, + sym_enumerator_list, + [44028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 1, anon_sym_COMMA, - ACTIONS(3108), 1, + ACTIONS(3215), 1, anon_sym_RPAREN, - STATE(1176), 1, + STATE(1208), 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, + [44041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3217), 3, anon_sym_COMMA, - ACTIONS(3112), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42437] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [44050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3219), 1, anon_sym_COMMA, - ACTIONS(3114), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42450] = 4, + ACTIONS(3222), 1, + anon_sym_RPAREN, + STATE(1210), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [44063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 1, - anon_sym_COMMA, - ACTIONS(3119), 1, + ACTIONS(2665), 1, anon_sym_RPAREN, - STATE(1180), 1, - aux_sym_parameter_list_repeat1, - [42463] = 3, + ACTIONS(3224), 1, + anon_sym_COMMA, + STATE(1211), 1, + aux_sym_preproc_argument_list_repeat1, + [44076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(2181), 1, anon_sym_RPAREN, - ACTIONS(3121), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [42474] = 4, + ACTIONS(3227), 1, + anon_sym_COMMA, + STATE(1212), 1, + aux_sym_argument_list_repeat1, + [44089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3232), 1, anon_sym_RBRACK_RBRACK, - STATE(1197), 1, + STATE(1251), 1, aux_sym_attribute_declaration_repeat1, - [42487] = 4, + [44102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3129), 1, + ACTIONS(3234), 1, anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42500] = 4, + STATE(1203), 1, + aux_sym_declaration_repeat1, + [44115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3131), 1, + ACTIONS(3236), 1, anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42513] = 4, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3238), 1, anon_sym_COMMA, - ACTIONS(3133), 1, + ACTIONS(3241), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1216), 1, aux_sym_declaration_repeat1, - [42526] = 4, + [44141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2143), 1, anon_sym_COMMA, - ACTIONS(3135), 1, + ACTIONS(3243), 1, anon_sym_RPAREN, - STATE(1169), 1, - aux_sym_preproc_params_repeat1, - [42539] = 4, + STATE(1212), 1, + aux_sym_argument_list_repeat1, + [44154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RBRACK_RBRACK, - STATE(1188), 1, - aux_sym_attribute_declaration_repeat1, - [42552] = 4, + ACTIONS(3245), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_preproc_argument_list_repeat1, + [44167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2825), 1, + anon_sym_COLON, + ACTIONS(3247), 1, + anon_sym_RPAREN, + STATE(1242), 1, + sym_gnu_asm_operand_list, + [44180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3139), 1, - anon_sym_RBRACK_RBRACK, - STATE(1213), 1, - aux_sym_attribute_declaration_repeat1, - [42565] = 2, + ACTIONS(3249), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [44193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [42574] = 4, + ACTIONS(3251), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RPAREN, + STATE(1208), 1, + aux_sym_preproc_params_repeat1, + [44206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3143), 1, + ACTIONS(3255), 1, anon_sym_SEMI, - STATE(1202), 1, - aux_sym_declaration_repeat1, - [42587] = 4, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, - anon_sym_RBRACE, - ACTIONS(3145), 1, + ACTIONS(3257), 1, + anon_sym_RPAREN, + ACTIONS(3259), 1, + anon_sym_COLON, + STATE(1240), 1, + sym_gnu_asm_clobber_list, + [44232] = 4, + ACTIONS(2489), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3261), 1, + anon_sym_LF, + STATE(1009), 1, + sym_preproc_argument_list, + [44245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_RPAREN, + ACTIONS(2825), 1, + anon_sym_COLON, + STATE(1219), 1, + sym_gnu_asm_operand_list, + [44258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3251), 1, anon_sym_COMMA, - STATE(1224), 1, - aux_sym_initializer_list_repeat1, - [42600] = 4, + ACTIONS(3263), 1, + anon_sym_RPAREN, + STATE(1221), 1, + aux_sym_preproc_params_repeat1, + [44271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_COLON, + ACTIONS(3265), 1, + anon_sym_RPAREN, + STATE(1223), 1, + sym_gnu_asm_operand_list, + [44284] = 4, + ACTIONS(2489), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3267), 1, + anon_sym_LF, + STATE(1009), 1, + sym_preproc_argument_list, + [44297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2519), 1, anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_SEMI, - STATE(1184), 1, - aux_sym_declaration_repeat1, - [42613] = 4, + ACTIONS(3269), 1, + anon_sym_RPAREN, + STATE(1211), 1, + aux_sym_preproc_argument_list_repeat1, + [44310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3271), 1, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42626] = 4, + ACTIONS(3273), 1, + anon_sym_RPAREN, + STATE(1210), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [44323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3275), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1271), 1, aux_sym_type_definition_repeat2, - [42639] = 4, + [44336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(2143), 1, anon_sym_COMMA, - ACTIONS(3159), 1, + ACTIONS(3277), 1, anon_sym_RPAREN, - STATE(1195), 1, - aux_sym_generic_expression_repeat1, - [42652] = 3, + STATE(1212), 1, + aux_sym_argument_list_repeat1, + [44349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_EQ, - ACTIONS(3161), 2, + ACTIONS(3279), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [42663] = 4, + ACTIONS(3281), 1, + anon_sym_RPAREN, + STATE(1237), 1, + aux_sym_parameter_list_repeat1, + [44362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3165), 1, + ACTIONS(3283), 1, anon_sym_RBRACK_RBRACK, - STATE(1213), 1, + STATE(1254), 1, aux_sym_attribute_declaration_repeat1, - [42676] = 4, + [44375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3169), 1, - anon_sym_RBRACE, - STATE(1200), 1, - aux_sym_enumerator_list_repeat1, - [42689] = 4, + ACTIONS(3285), 1, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(3287), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3290), 1, anon_sym_RPAREN, - STATE(1195), 1, + STATE(1236), 1, aux_sym_generic_expression_repeat1, - [42702] = 4, + [44401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_RBRACE, - ACTIONS(3173), 1, + ACTIONS(3279), 1, anon_sym_COMMA, - STATE(1217), 1, - aux_sym_enumerator_list_repeat1, - [42715] = 4, - ACTIONS(3), 1, + ACTIONS(3292), 1, + anon_sym_RPAREN, + STATE(1204), 1, + aux_sym_parameter_list_repeat1, + [44414] = 4, + ACTIONS(2489), 1, + anon_sym_LPAREN2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42728] = 4, + ACTIONS(3294), 1, + anon_sym_LF, + STATE(1009), 1, + sym_preproc_argument_list, + [44427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3177), 1, + ACTIONS(3296), 1, anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42741] = 4, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42754] = 4, + ACTIONS(3298), 1, + anon_sym_RPAREN, + ACTIONS(3300), 1, + anon_sym_COLON, + STATE(1491), 1, + sym_gnu_asm_goto_list, + [44453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(3181), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42767] = 4, + ACTIONS(3304), 1, + anon_sym_RPAREN, + ACTIONS(3302), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [44464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - anon_sym_COMMA, - ACTIONS(3183), 1, - anon_sym_SEMI, - STATE(1206), 1, - aux_sym_declaration_repeat1, - [42780] = 4, + ACTIONS(3259), 1, + anon_sym_COLON, + ACTIONS(3306), 1, + anon_sym_RPAREN, + STATE(1270), 1, + sym_gnu_asm_clobber_list, + [44477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3185), 1, + ACTIONS(3308), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1220), 1, aux_sym_declaration_repeat1, - [42793] = 4, + [44490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3310), 1, anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42806] = 4, + ACTIONS(3312), 1, + anon_sym_RBRACE, + STATE(1256), 1, + aux_sym_enumerator_list_repeat1, + [44503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_COMMA, - ACTIONS(3189), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42819] = 4, + ACTIONS(3314), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [44512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3191), 1, - anon_sym_RPAREN, - STATE(1174), 1, - aux_sym_argument_list_repeat1, - [42832] = 4, - ACTIONS(2482), 1, + ACTIONS(3316), 1, + anon_sym_SEMI, + STATE(1259), 1, + aux_sym_declaration_repeat1, + [44525] = 4, + ACTIONS(2489), 1, anon_sym_LPAREN2, - ACTIONS(2484), 1, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3318), 1, anon_sym_LF, - STATE(968), 1, + STATE(1009), 1, sym_preproc_argument_list, - [42845] = 4, + [44538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3137), 1, + sym_identifier, + ACTIONS(3312), 1, + anon_sym_RBRACE, + STATE(1273), 1, + sym_enumerator, + [44551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2291), 1, + anon_sym_RBRACE, + ACTIONS(3320), 1, anon_sym_COMMA, - ACTIONS(3195), 1, - anon_sym_SEMI, - STATE(1222), 1, - aux_sym_declaration_repeat1, - [42858] = 4, + STATE(1249), 1, + aux_sym_initializer_list_repeat1, + [44564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3197), 1, - anon_sym_RBRACK_RBRACK, - STATE(1213), 1, - aux_sym_attribute_declaration_repeat1, - [42871] = 4, + ACTIONS(3323), 1, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3325), 1, anon_sym_COMMA, - ACTIONS(3202), 1, + ACTIONS(3328), 1, anon_sym_RBRACK_RBRACK, - STATE(1213), 1, + STATE(1251), 1, aux_sym_attribute_declaration_repeat1, - [42884] = 4, + [44590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - sym_identifier, - ACTIONS(3204), 1, - anon_sym_RBRACE, - STATE(1262), 1, - sym_enumerator, - [42897] = 4, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [44603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(3332), 3, anon_sym_COMMA, - ACTIONS(3206), 1, anon_sym_RPAREN, - STATE(1173), 1, - aux_sym_preproc_argument_list_repeat1, - [42910] = 4, + anon_sym_COLON, + [44612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3208), 1, + ACTIONS(3334), 1, anon_sym_RBRACK_RBRACK, - STATE(1212), 1, + STATE(1251), 1, aux_sym_attribute_declaration_repeat1, - [42923] = 4, + [44625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - ACTIONS(3213), 1, - anon_sym_RBRACE, - STATE(1217), 1, - aux_sym_enumerator_list_repeat1, - [42936] = 4, + ACTIONS(3336), 1, + anon_sym_RBRACK_RBRACK, + STATE(1251), 1, + aux_sym_attribute_declaration_repeat1, + [44638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(3338), 1, anon_sym_COMMA, - ACTIONS(3215), 1, - anon_sym_SEMI, - STATE(1193), 1, - aux_sym_type_definition_repeat2, - [42949] = 4, + ACTIONS(3341), 1, + anon_sym_RBRACE, + STATE(1256), 1, + aux_sym_enumerator_list_repeat1, + [44651] = 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(3230), 1, + anon_sym_COMMA, + ACTIONS(3343), 1, + anon_sym_RBRACK_RBRACK, + STATE(1213), 1, + aux_sym_attribute_declaration_repeat1, + [44664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3219), 1, - anon_sym_RPAREN, - STATE(1174), 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, + ACTIONS(3345), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_declaration_repeat1, + [44677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(2753), 1, anon_sym_COMMA, - ACTIONS(3226), 1, + ACTIONS(3347), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1216), 1, aux_sym_declaration_repeat1, - [43001] = 4, + [44690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - ACTIONS(3228), 1, - sym_identifier, - STATE(898), 1, - sym_field_declaration_list, - [43014] = 4, + ACTIONS(3271), 1, + anon_sym_COMMA, + ACTIONS(3349), 1, + anon_sym_RPAREN, + STATE(1230), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [44703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, + ACTIONS(2147), 1, + anon_sym_COMMA, + ACTIONS(2149), 1, anon_sym_RBRACE, + STATE(1199), 1, + aux_sym_initializer_list_repeat1, + [44716] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(3230), 1, anon_sym_COMMA, - STATE(1224), 1, - aux_sym_initializer_list_repeat1, - [43027] = 2, + ACTIONS(3351), 1, + anon_sym_RBRACK_RBRACK, + STATE(1255), 1, + aux_sym_attribute_declaration_repeat1, + [44729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [43036] = 4, + ACTIONS(3137), 1, + sym_identifier, + ACTIONS(3353), 1, + anon_sym_RBRACE, + STATE(1273), 1, + sym_enumerator, + [44742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3355), 3, anon_sym_COMMA, - ACTIONS(3237), 1, anon_sym_RPAREN, - STATE(1228), 1, - aux_sym_parameter_list_repeat1, - [43049] = 4, + anon_sym_COLON, + [44751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3239), 1, + ACTIONS(3357), 1, anon_sym_SEMI, - STATE(1203), 1, - aux_sym_declaration_repeat1, - [43062] = 4, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(2159), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(3359), 1, anon_sym_RPAREN, - STATE(1180), 1, - aux_sym_parameter_list_repeat1, - [43075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - STATE(268), 1, - sym_parenthesized_expression, - [43085] = 3, + STATE(1236), 1, + aux_sym_generic_expression_repeat1, + [44777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2379), 1, + anon_sym_LBRACE, + ACTIONS(3361), 1, sym_identifier, - STATE(1262), 1, - sym_enumerator, - [43095] = 3, + STATE(908), 1, + sym_field_declaration_list, + [44790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(230), 1, - sym_compound_statement, - [43105] = 2, + ACTIONS(3363), 1, + sym_identifier, + STATE(894), 1, + sym_field_declaration_list, + [44803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 2, + ACTIONS(2845), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [43113] = 2, + ACTIONS(3365), 1, + anon_sym_SEMI, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43121] = 2, + ACTIONS(3300), 1, + anon_sym_COLON, + ACTIONS(3367), 1, + anon_sym_RPAREN, + STATE(1509), 1, + sym_gnu_asm_goto_list, + [44829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(3369), 1, anon_sym_COMMA, + ACTIONS(3372), 1, 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, - sym_comment, - ACTIONS(3249), 1, - anon_sym_LPAREN2, - STATE(1243), 1, - sym_parenthesized_expression, - [43147] = 3, + STATE(1271), 1, + aux_sym_type_definition_repeat2, + [44842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, - sym_identifier, - STATE(1216), 1, - sym_attribute, - [43157] = 2, + ACTIONS(2753), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_SEMI, + STATE(1252), 1, + aux_sym_declaration_repeat1, + [44855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 2, + ACTIONS(3341), 2, anon_sym_COMMA, anon_sym_RBRACE, - [43165] = 3, + [44863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3328), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [44871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, anon_sym_LPAREN2, - STATE(1411), 1, + STATE(1347), 1, sym_parenthesized_expression, - [43175] = 3, - ACTIONS(2484), 1, + [44881] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(234), 1, + sym_compound_statement, + [44891] = 3, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3378), 1, anon_sym_LF, - ACTIONS(3255), 1, + ACTIONS(3380), 1, sym_preproc_arg, - [43185] = 3, + [44901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3376), 1, anon_sym_LPAREN2, - STATE(266), 1, + STATE(1374), 1, sym_parenthesized_expression, - [43195] = 3, + [44911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, - anon_sym_LPAREN2, - STATE(1231), 1, - sym_parenthesized_expression, - [43205] = 3, + ACTIONS(3382), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [44919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_compound_statement, - [43215] = 3, - ACTIONS(2484), 1, + ACTIONS(3137), 1, + sym_identifier, + STATE(1273), 1, + sym_enumerator, + [44929] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3384), 1, anon_sym_LF, - ACTIONS(3259), 1, + ACTIONS(3386), 1, sym_preproc_arg, - [43225] = 3, - ACTIONS(2484), 1, + [44939] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3388), 1, anon_sym_LF, - ACTIONS(3263), 1, + ACTIONS(3390), 1, sym_preproc_arg, - [43235] = 3, - ACTIONS(2484), 1, + [44949] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_LF, - ACTIONS(3267), 1, - sym_preproc_arg, - [43245] = 3, + ACTIONS(329), 1, + anon_sym_LBRACE, + STATE(297), 1, + sym_compound_statement, + [44959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - STATE(283), 1, - sym_parenthesized_expression, - [43255] = 2, - ACTIONS(2484), 1, + ACTIONS(3392), 1, + sym_identifier, + STATE(1262), 1, + sym_attribute, + [44969] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3269), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [43263] = 3, + ACTIONS(3394), 1, + anon_sym_LF, + ACTIONS(3396), 1, + sym_preproc_arg, + [44979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3376), 1, anon_sym_LPAREN2, - STATE(291), 1, + STATE(1283), 1, sym_parenthesized_expression, - [43273] = 3, + [44989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - STATE(238), 1, - sym_parenthesized_expression, - [43283] = 3, - ACTIONS(2484), 1, + ACTIONS(3398), 1, + sym_identifier, + ACTIONS(3400), 1, + anon_sym_RPAREN, + [44999] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3402), 1, anon_sym_LF, - ACTIONS(3273), 1, + ACTIONS(3404), 1, sym_preproc_arg, - [43293] = 3, - ACTIONS(2484), 1, + [45009] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3406), 1, anon_sym_LF, - ACTIONS(3277), 1, + ACTIONS(3408), 1, sym_preproc_arg, - [43303] = 3, + [45019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3376), 1, anon_sym_LPAREN2, - STATE(321), 1, + STATE(1321), 1, sym_parenthesized_expression, - [43313] = 3, - ACTIONS(2484), 1, + [45029] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3410), 1, anon_sym_LF, - ACTIONS(3281), 1, + ACTIONS(3412), 1, sym_preproc_arg, - [43323] = 2, + [45039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [43331] = 3, + ACTIONS(1797), 1, + anon_sym_LPAREN2, + STATE(1448), 1, + sym_argument_list, + [45049] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3414), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [45057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(3416), 1, + sym_identifier, + ACTIONS(3418), 1, anon_sym_LPAREN2, - STATE(307), 1, - sym_parenthesized_expression, - [43341] = 3, - ACTIONS(2484), 1, + [45067] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(2283), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [45075] = 3, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3420), 1, anon_sym_LF, - ACTIONS(3285), 1, + ACTIONS(3422), 1, sym_preproc_arg, - [43351] = 3, + [45085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(2291), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [45093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, sym_identifier, - ACTIONS(3289), 1, + ACTIONS(3426), 1, anon_sym_LPAREN2, - [43361] = 3, + [45103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - sym_identifier, - ACTIONS(3293), 1, + ACTIONS(1797), 1, anon_sym_LPAREN2, - [43371] = 3, + STATE(1425), 1, + sym_argument_list, + [45113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3376), 1, anon_sym_LPAREN2, - STATE(1264), 1, + STATE(1390), 1, sym_parenthesized_expression, - [43381] = 3, - ACTIONS(2484), 1, + [45123] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3428), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [45131] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3430), 1, anon_sym_LF, - ACTIONS(3297), 1, + ACTIONS(3432), 1, sym_preproc_arg, - [43391] = 2, - ACTIONS(3), 1, + [45141] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3213), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43399] = 3, + ACTIONS(3434), 1, + anon_sym_LF, + ACTIONS(3436), 1, + sym_preproc_arg, + [45151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, + ACTIONS(3438), 1, anon_sym_LPAREN2, - STATE(1292), 1, - sym_argument_list, - [43409] = 3, + STATE(206), 1, + sym_parenthesized_expression, + [45161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(372), 1, + ACTIONS(119), 1, anon_sym_LBRACE, - STATE(150), 1, + STATE(70), 1, sym_compound_statement, - [43419] = 3, + [45171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3438), 1, anon_sym_LPAREN2, - STATE(1351), 1, + STATE(201), 1, sym_parenthesized_expression, - [43429] = 2, - ACTIONS(2484), 1, + [45181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, + anon_sym_LPAREN2, + STATE(202), 1, + sym_parenthesized_expression, + [45191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 1, + anon_sym_LPAREN2, + STATE(1276), 1, + sym_parenthesized_expression, + [45201] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3299), 2, + ACTIONS(3440), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [43437] = 2, + [45209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43445] = 3, - ACTIONS(2484), 1, + ACTIONS(3438), 1, + anon_sym_LPAREN2, + STATE(207), 1, + sym_parenthesized_expression, + [45219] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_LF, - ACTIONS(3303), 1, - sym_preproc_arg, - [43455] = 2, + ACTIONS(3376), 1, + anon_sym_LPAREN2, + STATE(1305), 1, + sym_parenthesized_expression, + [45229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43463] = 2, + ACTIONS(3438), 1, + anon_sym_LPAREN2, + STATE(281), 1, + sym_parenthesized_expression, + [45239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(3442), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [43471] = 3, - ACTIONS(2484), 1, + [45247] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3444), 2, anon_sym_LF, - ACTIONS(3307), 1, sym_preproc_arg, - [43481] = 3, - ACTIONS(2484), 1, + [45255] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LF, - ACTIONS(3311), 1, - sym_preproc_arg, - [43491] = 3, + ACTIONS(3392), 1, + sym_identifier, + STATE(1234), 1, + sym_attribute, + [45265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3438), 1, anon_sym_LPAREN2, - STATE(1306), 1, + STATE(277), 1, sym_parenthesized_expression, - [43501] = 3, - ACTIONS(2484), 1, + [45275] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_LF, - ACTIONS(3315), 1, - sym_preproc_arg, - [43511] = 3, + ACTIONS(2157), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [45283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, - sym_identifier, - STATE(1187), 1, - sym_attribute, - [43521] = 2, - ACTIONS(2484), 1, + ACTIONS(3446), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45291] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3317), 2, + ACTIONS(3448), 2, anon_sym_LF, sym_preproc_arg, - [43529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 1, - anon_sym_LPAREN2, - STATE(1401), 1, - sym_parenthesized_expression, - [43539] = 2, + [45299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 2, + ACTIONS(3450), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [43547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 1, - sym_identifier, - STATE(1269), 1, - sym_attribute, - [43557] = 3, + [45307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - STATE(73), 1, + STATE(174), 1, sym_compound_statement, - [43567] = 3, + [45317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3452), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [45325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, anon_sym_LPAREN2, - STATE(1280), 1, + STATE(196), 1, sym_parenthesized_expression, - [43577] = 2, + [45335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43585] = 2, + ACTIONS(3376), 1, + anon_sym_LPAREN2, + STATE(1462), 1, + sym_parenthesized_expression, + [45345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43593] = 2, - ACTIONS(2484), 1, + ACTIONS(3438), 1, + anon_sym_LPAREN2, + STATE(193), 1, + sym_parenthesized_expression, + [45355] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3323), 2, + ACTIONS(3454), 1, anon_sym_LF, + ACTIONS(3456), 1, sym_preproc_arg, - [43601] = 3, + [45365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, + ACTIONS(2239), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [45373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, sym_identifier, - STATE(1182), 1, + STATE(1274), 1, sym_attribute, - [43611] = 3, - ACTIONS(3), 1, + [45383] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_LPAREN2, - STATE(1349), 1, - sym_argument_list, - [43621] = 2, - ACTIONS(2484), 1, + ACTIONS(3458), 1, + anon_sym_LF, + ACTIONS(3460), 1, + sym_preproc_arg, + [45393] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3325), 2, + ACTIONS(3462), 1, anon_sym_LF, + ACTIONS(3464), 1, sym_preproc_arg, - [43629] = 2, + [45403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 2, + ACTIONS(2893), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [43637] = 3, - ACTIONS(2484), 1, + anon_sym_SEMI, + [45411] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3215), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45419] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3466), 2, anon_sym_LF, - ACTIONS(3331), 1, sym_preproc_arg, - [43647] = 3, + [45427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 1, - anon_sym_LPAREN2, - STATE(240), 1, - sym_parenthesized_expression, - [43657] = 2, - ACTIONS(3), 1, + ACTIONS(3392), 1, + sym_identifier, + STATE(1257), 1, + sym_attribute, + [45437] = 3, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3333), 1, - anon_sym_SEMI, - [43664] = 2, + ACTIONS(3468), 1, + anon_sym_LF, + ACTIONS(3470), 1, + sym_preproc_arg, + [45447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3202), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [43671] = 2, + [45455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_SEMI, + [45462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3474), 1, aux_sym_preproc_if_token2, - [43678] = 2, - ACTIONS(2484), 1, + [45469] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3476), 1, + anon_sym_LF, + [45476] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3478), 1, anon_sym_LF, - [43685] = 2, + [45483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3480), 1, aux_sym_preproc_if_token2, - [43692] = 2, + [45490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_RPAREN, - [43699] = 2, + ACTIONS(3482), 1, + sym_identifier, + [45497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3484), 1, aux_sym_preproc_if_token2, - [43706] = 2, + [45504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3486), 1, + anon_sym_SEMI, + [45511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2241), 1, + anon_sym_SEMI, + [45518] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3488), 1, + anon_sym_LF, + [45525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3490), 1, + anon_sym_SEMI, + [45532] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3261), 1, + anon_sym_LF, + [45539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 1, + anon_sym_SEMI, + [45546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, + aux_sym_preproc_if_token2, + [45553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3494), 1, aux_sym_preproc_if_token2, - [43713] = 2, + [45560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(2237), 1, + anon_sym_SEMI, + [45567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2235), 1, anon_sym_RPAREN, - [43720] = 2, + [45574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, - anon_sym_STAR, - [43727] = 2, + ACTIONS(2287), 1, + anon_sym_SEMI, + [45581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3496), 1, + anon_sym_SEMI, + [45588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, anon_sym_RPAREN, - [43734] = 2, - ACTIONS(2484), 1, + [45595] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_LF, - [43741] = 2, + ACTIONS(3498), 1, + anon_sym_SEMI, + [45602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3500), 1, + anon_sym_COLON, + [45609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_STAR, + [45616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2231), 1, anon_sym_RPAREN, - [43748] = 2, + [45623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, - anon_sym_RBRACE, - [43755] = 2, + ACTIONS(2265), 1, + anon_sym_RPAREN, + [45630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2229), 1, anon_sym_RPAREN, - [43762] = 2, + [45637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 1, - anon_sym_SEMI, - [43769] = 2, + ACTIONS(3504), 1, + aux_sym_preproc_if_token2, + [45644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 1, + ACTIONS(2225), 1, anon_sym_RPAREN, - [43776] = 2, + [45651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 1, - sym_identifier, - [43783] = 2, + ACTIONS(2281), 1, + anon_sym_RPAREN, + [45658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, - aux_sym_preproc_if_token2, - [43790] = 2, + ACTIONS(2279), 1, + anon_sym_RPAREN, + [45665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2223), 1, anon_sym_RPAREN, - [43797] = 2, + [45672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_SEMI, - [43804] = 2, + ACTIONS(2273), 1, + anon_sym_RPAREN, + [45679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(3506), 1, anon_sym_SEMI, - [43811] = 2, - ACTIONS(2484), 1, + [45686] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3508), 1, anon_sym_LF, - [43818] = 2, - ACTIONS(2484), 1, + [45693] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3510), 1, anon_sym_LF, - [43825] = 2, - ACTIONS(2484), 1, + [45700] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, - anon_sym_LF, - [43832] = 2, - ACTIONS(2484), 1, + ACTIONS(3512), 1, + aux_sym_preproc_if_token2, + [45707] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3514), 1, anon_sym_LF, - [43839] = 2, + [45714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - sym_identifier, - [43846] = 2, - ACTIONS(2484), 1, + ACTIONS(3516), 1, + anon_sym_SEMI, + [45721] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_LF, - [43853] = 2, - ACTIONS(2484), 1, + ACTIONS(3518), 1, + aux_sym_preproc_if_token2, + [45728] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3520), 1, anon_sym_LF, - [43860] = 2, - ACTIONS(2484), 1, + [45735] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3522), 1, anon_sym_LF, - [43867] = 2, + [45742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_SEMI, - [43874] = 2, - ACTIONS(2484), 1, + ACTIONS(3524), 1, + sym_identifier, + [45749] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3526), 1, anon_sym_LF, - [43881] = 2, + [45756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, - anon_sym_SEMI, - [43888] = 2, + ACTIONS(2261), 1, + anon_sym_RPAREN, + [45763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, - anon_sym_SEMI, - [43895] = 2, - ACTIONS(2484), 1, + ACTIONS(2247), 1, + anon_sym_RPAREN, + [45770] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3528), 1, anon_sym_LF, - [43902] = 2, - ACTIONS(2484), 1, + [45777] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3530), 1, anon_sym_LF, - [43909] = 2, + [45784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 1, - anon_sym_COLON, - [43916] = 2, - ACTIONS(2484), 1, + ACTIONS(3532), 1, + anon_sym_SEMI, + [45791] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(3534), 1, anon_sym_LF, - [43923] = 2, + [45798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_RPAREN, - [43930] = 2, + ACTIONS(3536), 1, + aux_sym_preproc_if_token2, + [45805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3538), 1, sym_identifier, - [43937] = 2, + [45812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, + ACTIONS(3540), 1, sym_identifier, - [43944] = 2, + [45819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(3542), 1, aux_sym_preproc_if_token2, - [43951] = 2, + [45826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_RPAREN, - [43958] = 2, + ACTIONS(3544), 1, + anon_sym_SEMI, + [45833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_RPAREN, - [43965] = 2, + ACTIONS(3546), 1, + anon_sym_SEMI, + [45840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_SEMI, - [43972] = 2, + ACTIONS(3548), 1, + aux_sym_preproc_if_token2, + [45847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3550), 1, aux_sym_preproc_if_token2, - [43979] = 2, + [45854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3552), 1, sym_identifier, - [43986] = 2, - ACTIONS(3), 1, + [45861] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2236), 1, - anon_sym_RPAREN, - [43993] = 2, + ACTIONS(3554), 1, + anon_sym_LF, + [45868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3556), 1, anon_sym_RPAREN, - [44000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_SEMI, - [44007] = 2, + [45875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3558), 1, aux_sym_preproc_if_token2, - [44014] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3405), 1, - anon_sym_LF, - [44021] = 2, + [45882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3560), 1, aux_sym_preproc_if_token2, - [44028] = 2, + [45889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - anon_sym_RPAREN, - [44035] = 2, - ACTIONS(3), 1, + ACTIONS(3562), 1, + anon_sym_SEMI, + [45896] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2132), 1, - anon_sym_RPAREN, - [44042] = 2, + ACTIONS(3564), 1, + anon_sym_LF, + [45903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_RPAREN, - [44049] = 2, + ACTIONS(3566), 1, + anon_sym_SQUOTE, + [45910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3568), 1, anon_sym_SEMI, - [44056] = 2, + [45917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, - aux_sym_preproc_if_token2, - [44063] = 2, + ACTIONS(2253), 1, + anon_sym_SEMI, + [45924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_STAR, - [44070] = 2, + ACTIONS(2249), 1, + anon_sym_RPAREN, + [45931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 1, - aux_sym_preproc_if_token2, - [44077] = 2, + ACTIONS(2149), 1, + anon_sym_RBRACE, + [45938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(2275), 1, anon_sym_SEMI, - [44084] = 2, + [45945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, - anon_sym_SEMI, - [44091] = 2, + ACTIONS(3570), 1, + anon_sym_COLON, + [45952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - aux_sym_preproc_if_token2, - [44098] = 2, + ACTIONS(3572), 1, + anon_sym_RPAREN, + [45959] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3574), 1, + anon_sym_LF, + [45966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3576), 1, aux_sym_preproc_if_token2, - [44105] = 2, - ACTIONS(2484), 1, + [45973] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_LF, - [44112] = 2, + ACTIONS(3578), 1, + aux_sym_preproc_if_token2, + [45980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3580), 1, anon_sym_RPAREN, - [44119] = 2, - ACTIONS(3), 1, + [45987] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3431), 1, - sym_identifier, - [44126] = 2, + ACTIONS(3582), 1, + anon_sym_LF, + [45994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3584), 1, aux_sym_preproc_if_token2, - [44133] = 2, - ACTIONS(2484), 1, + [46001] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3267), 1, anon_sym_LF, - [44140] = 2, + [46008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - sym_identifier, - [44147] = 2, + ACTIONS(2285), 1, + anon_sym_SEMI, + [46015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3586), 1, sym_identifier, - [44154] = 2, + [46022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_SQUOTE, - [44161] = 2, + ACTIONS(3588), 1, + anon_sym_LPAREN2, + [46029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 1, + anon_sym_SEMI, + [46036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3592), 1, sym_identifier, - [44168] = 2, + [46043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(3594), 1, anon_sym_SEMI, - [44175] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3445), 1, - anon_sym_LF, - [44182] = 2, + [46050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_RPAREN, - [44189] = 2, - ACTIONS(3), 1, + ACTIONS(3596), 1, + anon_sym_COLON, + [46057] = 2, + ACTIONS(1781), 1, + anon_sym_LF, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3449), 1, - anon_sym_RPAREN, - [44196] = 2, + [46064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3598), 1, anon_sym_RPAREN, - [44203] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3453), 1, - anon_sym_LF, - [44210] = 2, + [46071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3455), 1, - aux_sym_preproc_if_token2, - [44217] = 2, + ACTIONS(3600), 1, + anon_sym_STAR, + [46078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - anon_sym_SEMI, - [44224] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_LF, - [44231] = 2, + ACTIONS(3602), 1, + sym_identifier, + [46085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - anon_sym_SEMI, - [44238] = 2, + ACTIONS(3604), 1, + anon_sym_RPAREN, + [46092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(2221), 1, anon_sym_SEMI, - [44245] = 2, + [46099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, - anon_sym_SEMI, - [44252] = 2, + ACTIONS(2245), 1, + anon_sym_RPAREN, + [46106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(2219), 1, anon_sym_SEMI, - [44259] = 2, + [46113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - anon_sym_SEMI, - [44266] = 2, + ACTIONS(3606), 1, + aux_sym_preproc_if_token2, + [46120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym_COLON, - [44273] = 2, + ACTIONS(2243), 1, + anon_sym_RPAREN, + [46127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_STAR, - [44280] = 2, + ACTIONS(2293), 1, + anon_sym_RPAREN, + [46134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, - sym_identifier, - [44287] = 2, + ACTIONS(2217), 1, + anon_sym_SEMI, + [46141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, + ACTIONS(2289), 1, anon_sym_RPAREN, - [44294] = 2, + [46148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, - aux_sym_preproc_if_token2, - [44301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2226), 1, + ACTIONS(3608), 1, anon_sym_RPAREN, - [44308] = 2, + [46155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_SQUOTE, - [44315] = 2, + ACTIONS(2215), 1, + anon_sym_SEMI, + [46162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3610), 1, anon_sym_SEMI, - [44322] = 2, + [46169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_SEMI, - [44329] = 2, + ACTIONS(3612), 1, + sym_identifier, + [46176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_while, - [44336] = 2, + ACTIONS(3614), 1, + aux_sym_preproc_if_token2, + [46183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2224), 1, - anon_sym_RPAREN, - [44343] = 2, + ACTIONS(3616), 1, + aux_sym_preproc_if_token2, + [46190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, - anon_sym_RPAREN, - [44350] = 2, + ACTIONS(3206), 1, + anon_sym_RBRACE, + [46197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - anon_sym_SEMI, - [44357] = 2, + ACTIONS(3618), 1, + anon_sym_RPAREN, + [46204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3620), 1, aux_sym_preproc_if_token2, - [44364] = 2, + [46211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, + ACTIONS(3622), 1, aux_sym_preproc_if_token2, - [44371] = 2, + [46218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(2277), 1, anon_sym_RPAREN, - [44378] = 2, + [46225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, - anon_sym_RPAREN, - [44385] = 2, + ACTIONS(3624), 1, + sym_identifier, + [46232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - sym_identifier, - [44392] = 2, + ACTIONS(3626), 1, + anon_sym_RPAREN, + [46239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3483), 1, - sym_identifier, - [44399] = 2, + ACTIONS(2267), 1, + anon_sym_RPAREN, + [46246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(3628), 1, anon_sym_SEMI, - [44406] = 2, + [46253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - sym_identifier, - [44413] = 2, + ACTIONS(3630), 1, + anon_sym_SEMI, + [46260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, - aux_sym_preproc_if_token2, - [44420] = 2, + ACTIONS(3632), 1, + sym_identifier, + [46267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - aux_sym_preproc_if_token2, - [44427] = 2, + ACTIONS(3634), 1, + sym_identifier, + [46274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, - anon_sym_SEMI, - [44434] = 2, + ACTIONS(3636), 1, + anon_sym_STAR, + [46281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, - sym_identifier, - [44441] = 2, + ACTIONS(3638), 1, + aux_sym_preproc_if_token2, + [46288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_SEMI, - [44448] = 2, + ACTIONS(2263), 1, + anon_sym_RPAREN, + [46295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3640), 1, aux_sym_preproc_if_token2, - [44455] = 2, + [46302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, - anon_sym_STAR, - [44462] = 2, + ACTIONS(2259), 1, + anon_sym_RPAREN, + [46309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, - aux_sym_preproc_if_token2, - [44469] = 2, + ACTIONS(3642), 1, + sym_identifier, + [46316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 1, + ACTIONS(2257), 1, anon_sym_RPAREN, - [44476] = 2, - ACTIONS(2484), 1, + [46323] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, - anon_sym_LF, - [44483] = 2, + ACTIONS(3644), 1, + anon_sym_RBRACK, + [46330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3646), 1, anon_sym_SEMI, - [44490] = 2, + [46337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3511), 1, - sym_identifier, - [44497] = 2, + ACTIONS(3648), 1, + aux_sym_preproc_if_token2, + [46344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 1, - anon_sym_SEMI, - [44504] = 2, + ACTIONS(3650), 1, + sym_identifier, + [46351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(3652), 1, anon_sym_SEMI, - [44511] = 2, + [46358] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_LF, + [46365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 1, - anon_sym_SEMI, - [44518] = 2, + ACTIONS(3656), 1, + sym_identifier, + [46372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(2183), 1, anon_sym_RPAREN, - [44525] = 2, + [46379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, + sym_identifier, + [46386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(3660), 1, aux_sym_preproc_if_token2, - [44532] = 2, + [46393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 1, - anon_sym_SEMI, - [44539] = 2, + ACTIONS(3662), 1, + aux_sym_preproc_if_token2, + [46400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_RPAREN, - [44546] = 2, + ACTIONS(3664), 1, + anon_sym_STAR, + [46407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 1, + ACTIONS(2213), 1, anon_sym_SEMI, - [44553] = 2, + [46414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, + ACTIONS(3666), 1, anon_sym_RPAREN, - [44560] = 2, - ACTIONS(2484), 1, + [46421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_SEMI, + [46428] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3521), 1, + ACTIONS(3668), 1, anon_sym_LF, - [44567] = 2, + [46435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 1, + aux_sym_preproc_if_token2, + [46442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, + ACTIONS(2209), 1, anon_sym_SEMI, - [44574] = 2, + [46449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_SQUOTE, - [44581] = 2, + ACTIONS(3672), 1, + aux_sym_preproc_if_token2, + [46456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3674), 1, sym_identifier, - [44588] = 2, + [46463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3676), 1, sym_identifier, - [44595] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_LF, - [44602] = 2, + [46470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3531), 1, - anon_sym_SEMI, - [44609] = 2, + ACTIONS(3678), 1, + anon_sym_SQUOTE, + [46477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_SEMI, - [44616] = 2, + ACTIONS(3680), 1, + anon_sym_RPAREN, + [46484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, - sym_identifier, - [44623] = 2, + ACTIONS(3682), 1, + anon_sym_RPAREN, + [46491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - anon_sym_RPAREN, - [44630] = 2, + ACTIONS(3684), 1, + sym_identifier, + [46498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 1, - anon_sym_RPAREN, - [44637] = 2, - ACTIONS(2484), 1, + ACTIONS(3686), 1, + aux_sym_preproc_if_token2, + [46505] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3537), 1, + ACTIONS(3688), 1, anon_sym_LF, - [44644] = 2, - ACTIONS(2484), 1, + [46512] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LF, - [44651] = 2, + ACTIONS(3690), 1, + anon_sym_SEMI, + [46519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, + ACTIONS(2207), 1, anon_sym_SEMI, - [44658] = 2, + [46526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3539), 1, - aux_sym_preproc_if_token2, - [44665] = 2, + ACTIONS(3692), 1, + anon_sym_while, + [46533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_SEMI, - [44672] = 2, + ACTIONS(3694), 1, + anon_sym_RPAREN, + [46540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3543), 1, - anon_sym_SEMI, - [44679] = 2, + ACTIONS(3696), 1, + aux_sym_preproc_if_token2, + [46547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, - anon_sym_COLON, - [44686] = 2, + ACTIONS(3698), 1, + anon_sym_SQUOTE, + [46554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(3700), 1, anon_sym_SEMI, - [44693] = 2, + [46561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 1, - anon_sym_RBRACE, - [44700] = 2, + ACTIONS(2199), 1, + anon_sym_SEMI, + [46568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 1, + ACTIONS(2255), 1, anon_sym_SEMI, - [44707] = 2, + [46575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, - aux_sym_preproc_if_token2, - [44714] = 2, + ACTIONS(2197), 1, + anon_sym_SEMI, + [46582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - aux_sym_preproc_if_token2, - [44721] = 2, + ACTIONS(3702), 1, + sym_identifier, + [46589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_LPAREN2, + [46596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 1, + ACTIONS(2195), 1, anon_sym_SEMI, - [44728] = 2, + [46603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3706), 1, sym_identifier, - [44735] = 2, + [46610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3553), 1, + ACTIONS(3708), 1, sym_identifier, - [44742] = 2, + [46617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3710), 1, sym_identifier, - [44749] = 2, + [46624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 1, - anon_sym_SEMI, - [44756] = 2, - ACTIONS(2484), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_LF, - [44763] = 2, + ACTIONS(3712), 1, + anon_sym_RPAREN, + [46631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, - anon_sym_SEMI, - [44770] = 2, + ACTIONS(2201), 1, + anon_sym_RPAREN, + [46638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(3714), 1, anon_sym_RPAREN, - [44777] = 2, + [46645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - ts_builtin_sym_end, - [44784] = 2, + ACTIONS(2193), 1, + anon_sym_RPAREN, + [46652] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3716), 1, + anon_sym_LF, + [46659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, + ACTIONS(3718), 1, anon_sym_RPAREN, - [44791] = 2, - ACTIONS(3), 1, + [46666] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(2142), 1, - anon_sym_SEMI, - [44798] = 2, + ACTIONS(3720), 1, + anon_sym_LF, + [46673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, - anon_sym_LPAREN2, - [44805] = 2, + ACTIONS(3722), 1, + aux_sym_preproc_if_token2, + [46680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3724), 1, anon_sym_RPAREN, - [44812] = 2, - ACTIONS(3), 1, + [46687] = 2, + ACTIONS(2491), 1, sym_comment, - ACTIONS(3565), 1, - sym_identifier, - [44819] = 2, + ACTIONS(3318), 1, + anon_sym_LF, + [46694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, + ACTIONS(3726), 1, anon_sym_while, - [44826] = 2, + [46701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(2191), 1, anon_sym_SEMI, - [44833] = 2, + [46708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_SEMI, - [44840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - [44847] = 2, + ACTIONS(3728), 1, + ts_builtin_sym_end, + [46715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3575), 1, + ACTIONS(3730), 1, anon_sym_COLON, - [44854] = 2, + [46722] = 2, + ACTIONS(2491), 1, + sym_comment, + ACTIONS(3294), 1, + anon_sym_LF, + [46729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 1, - aux_sym_preproc_if_token2, - [44861] = 2, + ACTIONS(2203), 1, + anon_sym_SEMI, + [46736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2189), 1, anon_sym_SEMI, - [44868] = 2, + [46743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_COLON, - [44875] = 2, + ACTIONS(3732), 1, + anon_sym_LPAREN2, + [46750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, - aux_sym_preproc_if_token2, - [44882] = 2, + ACTIONS(3734), 1, + sym_identifier, + [46757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3583), 1, - aux_sym_preproc_if_token2, - [44889] = 2, + ACTIONS(3736), 1, + anon_sym_SEMI, + [46764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3738), 1, anon_sym_SEMI, - [44896] = 2, + [46771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, - anon_sym_RPAREN, - [44903] = 2, + ACTIONS(3740), 1, + anon_sym_LPAREN2, + [46778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3587), 1, + ACTIONS(3742), 1, anon_sym_while, - [44910] = 2, + [46785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, - anon_sym_RPAREN, - [44917] = 2, + ACTIONS(3744), 1, + sym_identifier, + [46792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, - anon_sym_RPAREN, - [44924] = 2, + ACTIONS(3746), 1, + anon_sym_COLON, + [46799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, - aux_sym_preproc_if_token2, - [44931] = 2, + ACTIONS(3748), 1, + sym_identifier, + [46806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(2187), 1, anon_sym_SEMI, - [44938] = 2, + [46813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, - aux_sym_preproc_if_token2, - [44945] = 2, + ACTIONS(3750), 1, + anon_sym_SEMI, + [46820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2136), 1, - anon_sym_RPAREN, - [44952] = 2, + ACTIONS(3752), 1, + anon_sym_SEMI, + [46827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - aux_sym_preproc_if_token2, - [44959] = 2, + ACTIONS(3754), 1, + anon_sym_COLON, + [46834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 1, - anon_sym_LPAREN2, - [44966] = 2, + ACTIONS(3756), 1, + anon_sym_RPAREN, + [46841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3758), 1, anon_sym_while, - [44973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3599), 1, - anon_sym_COLON, - [44980] = 2, + [46848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3760), 1, anon_sym_LPAREN2, - [44987] = 2, + [46855] = 2, + ACTIONS(1785), 1, + anon_sym_LF, + ACTIONS(2491), 1, + sym_comment, + [46862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, + ACTIONS(2185), 1, anon_sym_SEMI, - [44994] = 2, - ACTIONS(1656), 1, - anon_sym_LF, - ACTIONS(2484), 1, + [46869] = 2, + ACTIONS(3), 1, sym_comment, - [45001] = 2, + ACTIONS(3762), 1, + anon_sym_LPAREN2, + [46876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - sym_identifier, - [45008] = 2, + ACTIONS(2227), 1, + anon_sym_RPAREN, + [46883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3764), 1, anon_sym_LPAREN2, - [45015] = 2, - ACTIONS(1652), 1, - anon_sym_LF, - ACTIONS(2484), 1, + [46890] = 2, + ACTIONS(3), 1, sym_comment, - [45022] = 2, + ACTIONS(3766), 1, + sym_identifier, + [46897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3768), 1, anon_sym_LPAREN2, - [45029] = 2, + [46904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3609), 1, + ACTIONS(3770), 1, sym_identifier, - [45036] = 2, + [46911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3611), 1, + ACTIONS(3772), 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)] = 77, + [SMALL_STATE(387)] = 198, + [SMALL_STATE(388)] = 307, + [SMALL_STATE(389)] = 417, + [SMALL_STATE(390)] = 519, + [SMALL_STATE(391)] = 621, + [SMALL_STATE(392)] = 731, + [SMALL_STATE(393)] = 841, + [SMALL_STATE(394)] = 943, + [SMALL_STATE(395)] = 1049, + [SMALL_STATE(396)] = 1159, + [SMALL_STATE(397)] = 1269, + [SMALL_STATE(398)] = 1371, + [SMALL_STATE(399)] = 1473, + [SMALL_STATE(400)] = 1583, + [SMALL_STATE(401)] = 1685, + [SMALL_STATE(402)] = 1795, + [SMALL_STATE(403)] = 1905, + [SMALL_STATE(404)] = 2015, + [SMALL_STATE(405)] = 2125, + [SMALL_STATE(406)] = 2227, + [SMALL_STATE(407)] = 2337, + [SMALL_STATE(408)] = 2439, + [SMALL_STATE(409)] = 2549, + [SMALL_STATE(410)] = 2659, + [SMALL_STATE(411)] = 2765, + [SMALL_STATE(412)] = 2867, + [SMALL_STATE(413)] = 2969, + [SMALL_STATE(414)] = 3079, + [SMALL_STATE(415)] = 3156, + [SMALL_STATE(416)] = 3259, + [SMALL_STATE(417)] = 3338, + [SMALL_STATE(418)] = 3415, + [SMALL_STATE(419)] = 3494, + [SMALL_STATE(420)] = 3573, + [SMALL_STATE(421)] = 3650, + [SMALL_STATE(422)] = 3729, + [SMALL_STATE(423)] = 3806, + [SMALL_STATE(424)] = 3880, + [SMALL_STATE(425)] = 3982, + [SMALL_STATE(426)] = 4082, + [SMALL_STATE(427)] = 4182, + [SMALL_STATE(428)] = 4282, + [SMALL_STATE(429)] = 4382, + [SMALL_STATE(430)] = 4482, + [SMALL_STATE(431)] = 4582, + [SMALL_STATE(432)] = 4687, + [SMALL_STATE(433)] = 4778, + [SMALL_STATE(434)] = 4869, + [SMALL_STATE(435)] = 4930, + [SMALL_STATE(436)] = 5023, + [SMALL_STATE(437)] = 5114, + [SMALL_STATE(438)] = 5205, + [SMALL_STATE(439)] = 5296, + [SMALL_STATE(440)] = 5387, + [SMALL_STATE(441)] = 5478, + [SMALL_STATE(442)] = 5569, + [SMALL_STATE(443)] = 5630, + [SMALL_STATE(444)] = 5721, + [SMALL_STATE(445)] = 5812, + [SMALL_STATE(446)] = 5903, + [SMALL_STATE(447)] = 5994, + [SMALL_STATE(448)] = 6085, + [SMALL_STATE(449)] = 6176, + [SMALL_STATE(450)] = 6267, + [SMALL_STATE(451)] = 6360, + [SMALL_STATE(452)] = 6451, + [SMALL_STATE(453)] = 6542, + [SMALL_STATE(454)] = 6633, + [SMALL_STATE(455)] = 6726, + [SMALL_STATE(456)] = 6817, + [SMALL_STATE(457)] = 6908, + [SMALL_STATE(458)] = 6999, + [SMALL_STATE(459)] = 7090, + [SMALL_STATE(460)] = 7181, + [SMALL_STATE(461)] = 7272, + [SMALL_STATE(462)] = 7363, + [SMALL_STATE(463)] = 7454, + [SMALL_STATE(464)] = 7545, + [SMALL_STATE(465)] = 7636, + [SMALL_STATE(466)] = 7727, + [SMALL_STATE(467)] = 7818, + [SMALL_STATE(468)] = 7879, + [SMALL_STATE(469)] = 7970, + [SMALL_STATE(470)] = 8063, + [SMALL_STATE(471)] = 8154, + [SMALL_STATE(472)] = 8245, + [SMALL_STATE(473)] = 8336, + [SMALL_STATE(474)] = 8427, + [SMALL_STATE(475)] = 8518, + [SMALL_STATE(476)] = 8609, + [SMALL_STATE(477)] = 8700, + [SMALL_STATE(478)] = 8791, + [SMALL_STATE(479)] = 8882, + [SMALL_STATE(480)] = 8973, + [SMALL_STATE(481)] = 9064, + [SMALL_STATE(482)] = 9155, + [SMALL_STATE(483)] = 9246, + [SMALL_STATE(484)] = 9337, + [SMALL_STATE(485)] = 9428, + [SMALL_STATE(486)] = 9516, + [SMALL_STATE(487)] = 9604, + [SMALL_STATE(488)] = 9692, + [SMALL_STATE(489)] = 9780, + [SMALL_STATE(490)] = 9868, + [SMALL_STATE(491)] = 9956, + [SMALL_STATE(492)] = 10044, + [SMALL_STATE(493)] = 10132, + [SMALL_STATE(494)] = 10220, + [SMALL_STATE(495)] = 10308, + [SMALL_STATE(496)] = 10396, + [SMALL_STATE(497)] = 10484, + [SMALL_STATE(498)] = 10572, + [SMALL_STATE(499)] = 10660, + [SMALL_STATE(500)] = 10748, + [SMALL_STATE(501)] = 10836, + [SMALL_STATE(502)] = 10924, + [SMALL_STATE(503)] = 11012, + [SMALL_STATE(504)] = 11100, + [SMALL_STATE(505)] = 11185, + [SMALL_STATE(506)] = 11270, + [SMALL_STATE(507)] = 11355, + [SMALL_STATE(508)] = 11440, + [SMALL_STATE(509)] = 11525, + [SMALL_STATE(510)] = 11610, + [SMALL_STATE(511)] = 11695, + [SMALL_STATE(512)] = 11780, + [SMALL_STATE(513)] = 11865, + [SMALL_STATE(514)] = 11950, + [SMALL_STATE(515)] = 12035, + [SMALL_STATE(516)] = 12120, + [SMALL_STATE(517)] = 12205, + [SMALL_STATE(518)] = 12290, + [SMALL_STATE(519)] = 12375, + [SMALL_STATE(520)] = 12460, + [SMALL_STATE(521)] = 12545, + [SMALL_STATE(522)] = 12630, + [SMALL_STATE(523)] = 12715, + [SMALL_STATE(524)] = 12800, + [SMALL_STATE(525)] = 12885, + [SMALL_STATE(526)] = 12970, + [SMALL_STATE(527)] = 13055, + [SMALL_STATE(528)] = 13140, + [SMALL_STATE(529)] = 13225, + [SMALL_STATE(530)] = 13310, + [SMALL_STATE(531)] = 13395, + [SMALL_STATE(532)] = 13480, + [SMALL_STATE(533)] = 13565, + [SMALL_STATE(534)] = 13650, + [SMALL_STATE(535)] = 13735, + [SMALL_STATE(536)] = 13820, + [SMALL_STATE(537)] = 13905, + [SMALL_STATE(538)] = 13990, + [SMALL_STATE(539)] = 14075, + [SMALL_STATE(540)] = 14160, + [SMALL_STATE(541)] = 14245, + [SMALL_STATE(542)] = 14330, + [SMALL_STATE(543)] = 14415, + [SMALL_STATE(544)] = 14500, + [SMALL_STATE(545)] = 14585, + [SMALL_STATE(546)] = 14670, + [SMALL_STATE(547)] = 14755, + [SMALL_STATE(548)] = 14840, + [SMALL_STATE(549)] = 14925, + [SMALL_STATE(550)] = 15010, + [SMALL_STATE(551)] = 15095, + [SMALL_STATE(552)] = 15180, + [SMALL_STATE(553)] = 15265, + [SMALL_STATE(554)] = 15350, + [SMALL_STATE(555)] = 15405, + [SMALL_STATE(556)] = 15490, + [SMALL_STATE(557)] = 15575, + [SMALL_STATE(558)] = 15660, + [SMALL_STATE(559)] = 15745, + [SMALL_STATE(560)] = 15830, + [SMALL_STATE(561)] = 15915, + [SMALL_STATE(562)] = 16000, + [SMALL_STATE(563)] = 16085, + [SMALL_STATE(564)] = 16170, + [SMALL_STATE(565)] = 16255, + [SMALL_STATE(566)] = 16340, + [SMALL_STATE(567)] = 16395, + [SMALL_STATE(568)] = 16480, + [SMALL_STATE(569)] = 16565, + [SMALL_STATE(570)] = 16650, + [SMALL_STATE(571)] = 16735, + [SMALL_STATE(572)] = 16820, + [SMALL_STATE(573)] = 16905, + [SMALL_STATE(574)] = 16990, + [SMALL_STATE(575)] = 17075, + [SMALL_STATE(576)] = 17160, + [SMALL_STATE(577)] = 17245, + [SMALL_STATE(578)] = 17330, + [SMALL_STATE(579)] = 17415, + [SMALL_STATE(580)] = 17500, + [SMALL_STATE(581)] = 17585, + [SMALL_STATE(582)] = 17670, + [SMALL_STATE(583)] = 17734, + [SMALL_STATE(584)] = 17785, + [SMALL_STATE(585)] = 17845, + [SMALL_STATE(586)] = 17905, + [SMALL_STATE(587)] = 17969, + [SMALL_STATE(588)] = 18035, + [SMALL_STATE(589)] = 18105, + [SMALL_STATE(590)] = 18177, + [SMALL_STATE(591)] = 18251, + [SMALL_STATE(592)] = 18327, + [SMALL_STATE(593)] = 18411, + [SMALL_STATE(594)] = 18461, + [SMALL_STATE(595)] = 18539, + [SMALL_STATE(596)] = 18619, + [SMALL_STATE(597)] = 18669, + [SMALL_STATE(598)] = 18731, + [SMALL_STATE(599)] = 18781, + [SMALL_STATE(600)] = 18863, + [SMALL_STATE(601)] = 18913, + [SMALL_STATE(602)] = 18963, + [SMALL_STATE(603)] = 19013, + [SMALL_STATE(604)] = 19063, + [SMALL_STATE(605)] = 19113, + [SMALL_STATE(606)] = 19179, + [SMALL_STATE(607)] = 19229, + [SMALL_STATE(608)] = 19279, + [SMALL_STATE(609)] = 19329, + [SMALL_STATE(610)] = 19379, + [SMALL_STATE(611)] = 19429, + [SMALL_STATE(612)] = 19479, + [SMALL_STATE(613)] = 19529, + [SMALL_STATE(614)] = 19579, + [SMALL_STATE(615)] = 19629, + [SMALL_STATE(616)] = 19679, + [SMALL_STATE(617)] = 19729, + [SMALL_STATE(618)] = 19789, + [SMALL_STATE(619)] = 19839, + [SMALL_STATE(620)] = 19889, + [SMALL_STATE(621)] = 19973, + [SMALL_STATE(622)] = 20031, + [SMALL_STATE(623)] = 20091, + [SMALL_STATE(624)] = 20141, + [SMALL_STATE(625)] = 20191, + [SMALL_STATE(626)] = 20275, + [SMALL_STATE(627)] = 20325, + [SMALL_STATE(628)] = 20375, + [SMALL_STATE(629)] = 20425, + [SMALL_STATE(630)] = 20475, + [SMALL_STATE(631)] = 20525, + [SMALL_STATE(632)] = 20575, + [SMALL_STATE(633)] = 20625, + [SMALL_STATE(634)] = 20678, + [SMALL_STATE(635)] = 20759, + [SMALL_STATE(636)] = 20812, + [SMALL_STATE(637)] = 20865, + [SMALL_STATE(638)] = 20918, + [SMALL_STATE(639)] = 20971, + [SMALL_STATE(640)] = 21045, + [SMALL_STATE(641)] = 21111, + [SMALL_STATE(642)] = 21191, + [SMALL_STATE(643)] = 21247, + [SMALL_STATE(644)] = 21327, + [SMALL_STATE(645)] = 21401, + [SMALL_STATE(646)] = 21475, + [SMALL_STATE(647)] = 21531, + [SMALL_STATE(648)] = 21585, + [SMALL_STATE(649)] = 21663, + [SMALL_STATE(650)] = 21719, + [SMALL_STATE(651)] = 21779, + [SMALL_STATE(652)] = 21841, + [SMALL_STATE(653)] = 21899, + [SMALL_STATE(654)] = 21961, + [SMALL_STATE(655)] = 22019, + [SMALL_STATE(656)] = 22093, + [SMALL_STATE(657)] = 22161, + [SMALL_STATE(658)] = 22231, + [SMALL_STATE(659)] = 22303, + [SMALL_STATE(660)] = 22359, + [SMALL_STATE(661)] = 22433, + [SMALL_STATE(662)] = 22509, + [SMALL_STATE(663)] = 22554, + [SMALL_STATE(664)] = 22603, + [SMALL_STATE(665)] = 22648, + [SMALL_STATE(666)] = 22719, + [SMALL_STATE(667)] = 22768, + [SMALL_STATE(668)] = 22813, + [SMALL_STATE(669)] = 22889, + [SMALL_STATE(670)] = 22932, + [SMALL_STATE(671)] = 22973, + [SMALL_STATE(672)] = 23013, + [SMALL_STATE(673)] = 23052, + [SMALL_STATE(674)] = 23123, + [SMALL_STATE(675)] = 23162, + [SMALL_STATE(676)] = 23201, + [SMALL_STATE(677)] = 23240, + [SMALL_STATE(678)] = 23279, + [SMALL_STATE(679)] = 23348, + [SMALL_STATE(680)] = 23387, + [SMALL_STATE(681)] = 23426, + [SMALL_STATE(682)] = 23465, + [SMALL_STATE(683)] = 23538, + [SMALL_STATE(684)] = 23605, + [SMALL_STATE(685)] = 23670, + [SMALL_STATE(686)] = 23733, + [SMALL_STATE(687)] = 23772, + [SMALL_STATE(688)] = 23833, + [SMALL_STATE(689)] = 23872, + [SMALL_STATE(690)] = 23925, + [SMALL_STATE(691)] = 23982, + [SMALL_STATE(692)] = 24021, + [SMALL_STATE(693)] = 24088, + [SMALL_STATE(694)] = 24127, + [SMALL_STATE(695)] = 24166, + [SMALL_STATE(696)] = 24205, + [SMALL_STATE(697)] = 24260, + [SMALL_STATE(698)] = 24299, + [SMALL_STATE(699)] = 24356, + [SMALL_STATE(700)] = 24395, + [SMALL_STATE(701)] = 24434, + [SMALL_STATE(702)] = 24473, + [SMALL_STATE(703)] = 24512, + [SMALL_STATE(704)] = 24551, + [SMALL_STATE(705)] = 24590, + [SMALL_STATE(706)] = 24629, + [SMALL_STATE(707)] = 24702, + [SMALL_STATE(708)] = 24741, + [SMALL_STATE(709)] = 24780, + [SMALL_STATE(710)] = 24830, + [SMALL_STATE(711)] = 24880, + [SMALL_STATE(712)] = 24930, + [SMALL_STATE(713)] = 24968, + [SMALL_STATE(714)] = 25018, + [SMALL_STATE(715)] = 25056, + [SMALL_STATE(716)] = 25093, + [SMALL_STATE(717)] = 25168, + [SMALL_STATE(718)] = 25205, + [SMALL_STATE(719)] = 25242, + [SMALL_STATE(720)] = 25279, + [SMALL_STATE(721)] = 25354, + [SMALL_STATE(722)] = 25391, + [SMALL_STATE(723)] = 25432, + [SMALL_STATE(724)] = 25469, + [SMALL_STATE(725)] = 25544, + [SMALL_STATE(726)] = 25581, + [SMALL_STATE(727)] = 25654, + [SMALL_STATE(728)] = 25691, + [SMALL_STATE(729)] = 25728, + [SMALL_STATE(730)] = 25765, + [SMALL_STATE(731)] = 25802, + [SMALL_STATE(732)] = 25839, + [SMALL_STATE(733)] = 25876, + [SMALL_STATE(734)] = 25913, + [SMALL_STATE(735)] = 25950, + [SMALL_STATE(736)] = 25987, + [SMALL_STATE(737)] = 26024, + [SMALL_STATE(738)] = 26061, + [SMALL_STATE(739)] = 26098, + [SMALL_STATE(740)] = 26135, + [SMALL_STATE(741)] = 26172, + [SMALL_STATE(742)] = 26209, + [SMALL_STATE(743)] = 26246, + [SMALL_STATE(744)] = 26283, + [SMALL_STATE(745)] = 26320, + [SMALL_STATE(746)] = 26357, + [SMALL_STATE(747)] = 26398, + [SMALL_STATE(748)] = 26435, + [SMALL_STATE(749)] = 26472, + [SMALL_STATE(750)] = 26509, + [SMALL_STATE(751)] = 26546, + [SMALL_STATE(752)] = 26621, + [SMALL_STATE(753)] = 26658, + [SMALL_STATE(754)] = 26695, + [SMALL_STATE(755)] = 26736, + [SMALL_STATE(756)] = 26773, + [SMALL_STATE(757)] = 26810, + [SMALL_STATE(758)] = 26851, + [SMALL_STATE(759)] = 26888, + [SMALL_STATE(760)] = 26925, + [SMALL_STATE(761)] = 26962, + [SMALL_STATE(762)] = 26999, + [SMALL_STATE(763)] = 27040, + [SMALL_STATE(764)] = 27077, + [SMALL_STATE(765)] = 27114, + [SMALL_STATE(766)] = 27159, + [SMALL_STATE(767)] = 27229, + [SMALL_STATE(768)] = 27301, + [SMALL_STATE(769)] = 27373, + [SMALL_STATE(770)] = 27445, + [SMALL_STATE(771)] = 27517, + [SMALL_STATE(772)] = 27589, + [SMALL_STATE(773)] = 27661, + [SMALL_STATE(774)] = 27733, + [SMALL_STATE(775)] = 27805, + [SMALL_STATE(776)] = 27877, + [SMALL_STATE(777)] = 27949, + [SMALL_STATE(778)] = 28021, + [SMALL_STATE(779)] = 28091, + [SMALL_STATE(780)] = 28163, + [SMALL_STATE(781)] = 28235, + [SMALL_STATE(782)] = 28307, + [SMALL_STATE(783)] = 28379, + [SMALL_STATE(784)] = 28451, + [SMALL_STATE(785)] = 28523, + [SMALL_STATE(786)] = 28595, + [SMALL_STATE(787)] = 28667, + [SMALL_STATE(788)] = 28739, + [SMALL_STATE(789)] = 28811, + [SMALL_STATE(790)] = 28883, + [SMALL_STATE(791)] = 28955, + [SMALL_STATE(792)] = 29027, + [SMALL_STATE(793)] = 29099, + [SMALL_STATE(794)] = 29171, + [SMALL_STATE(795)] = 29243, + [SMALL_STATE(796)] = 29313, + [SMALL_STATE(797)] = 29385, + [SMALL_STATE(798)] = 29457, + [SMALL_STATE(799)] = 29529, + [SMALL_STATE(800)] = 29601, + [SMALL_STATE(801)] = 29673, + [SMALL_STATE(802)] = 29733, + [SMALL_STATE(803)] = 29805, + [SMALL_STATE(804)] = 29877, + [SMALL_STATE(805)] = 29949, + [SMALL_STATE(806)] = 30021, + [SMALL_STATE(807)] = 30093, + [SMALL_STATE(808)] = 30165, + [SMALL_STATE(809)] = 30237, + [SMALL_STATE(810)] = 30309, + [SMALL_STATE(811)] = 30379, + [SMALL_STATE(812)] = 30451, + [SMALL_STATE(813)] = 30523, + [SMALL_STATE(814)] = 30595, + [SMALL_STATE(815)] = 30667, + [SMALL_STATE(816)] = 30739, + [SMALL_STATE(817)] = 30811, + [SMALL_STATE(818)] = 30881, + [SMALL_STATE(819)] = 30953, + [SMALL_STATE(820)] = 31025, + [SMALL_STATE(821)] = 31097, + [SMALL_STATE(822)] = 31167, + [SMALL_STATE(823)] = 31239, + [SMALL_STATE(824)] = 31296, + [SMALL_STATE(825)] = 31353, + [SMALL_STATE(826)] = 31410, + [SMALL_STATE(827)] = 31479, + [SMALL_STATE(828)] = 31548, + [SMALL_STATE(829)] = 31605, + [SMALL_STATE(830)] = 31662, + [SMALL_STATE(831)] = 31731, + [SMALL_STATE(832)] = 31800, + [SMALL_STATE(833)] = 31853, + [SMALL_STATE(834)] = 31922, + [SMALL_STATE(835)] = 31979, + [SMALL_STATE(836)] = 32028, + [SMALL_STATE(837)] = 32097, + [SMALL_STATE(838)] = 32164, + [SMALL_STATE(839)] = 32221, + [SMALL_STATE(840)] = 32286, + [SMALL_STATE(841)] = 32349, + [SMALL_STATE(842)] = 32412, + [SMALL_STATE(843)] = 32473, + [SMALL_STATE(844)] = 32532, + [SMALL_STATE(845)] = 32589, + [SMALL_STATE(846)] = 32658, + [SMALL_STATE(847)] = 32715, + [SMALL_STATE(848)] = 32768, + [SMALL_STATE(849)] = 32819, + [SMALL_STATE(850)] = 32888, + [SMALL_STATE(851)] = 32957, + [SMALL_STATE(852)] = 33026, + [SMALL_STATE(853)] = 33095, + [SMALL_STATE(854)] = 33164, + [SMALL_STATE(855)] = 33233, + [SMALL_STATE(856)] = 33290, + [SMALL_STATE(857)] = 33359, + [SMALL_STATE(858)] = 33428, + [SMALL_STATE(859)] = 33485, + [SMALL_STATE(860)] = 33554, + [SMALL_STATE(861)] = 33623, + [SMALL_STATE(862)] = 33692, + [SMALL_STATE(863)] = 33749, + [SMALL_STATE(864)] = 33818, + [SMALL_STATE(865)] = 33887, + [SMALL_STATE(866)] = 33956, + [SMALL_STATE(867)] = 34013, + [SMALL_STATE(868)] = 34082, + [SMALL_STATE(869)] = 34151, + [SMALL_STATE(870)] = 34220, + [SMALL_STATE(871)] = 34268, + [SMALL_STATE(872)] = 34316, + [SMALL_STATE(873)] = 34364, + [SMALL_STATE(874)] = 34412, + [SMALL_STATE(875)] = 34449, + [SMALL_STATE(876)] = 34502, + [SMALL_STATE(877)] = 34539, + [SMALL_STATE(878)] = 34576, + [SMALL_STATE(879)] = 34629, + [SMALL_STATE(880)] = 34666, + [SMALL_STATE(881)] = 34719, + [SMALL_STATE(882)] = 34756, + [SMALL_STATE(883)] = 34806, + [SMALL_STATE(884)] = 34856, + [SMALL_STATE(885)] = 34892, + [SMALL_STATE(886)] = 34942, + [SMALL_STATE(887)] = 34992, + [SMALL_STATE(888)] = 35042, + [SMALL_STATE(889)] = 35092, + [SMALL_STATE(890)] = 35142, + [SMALL_STATE(891)] = 35192, + [SMALL_STATE(892)] = 35242, + [SMALL_STATE(893)] = 35273, + [SMALL_STATE(894)] = 35304, + [SMALL_STATE(895)] = 35335, + [SMALL_STATE(896)] = 35366, + [SMALL_STATE(897)] = 35399, + [SMALL_STATE(898)] = 35430, + [SMALL_STATE(899)] = 35461, + [SMALL_STATE(900)] = 35492, + [SMALL_STATE(901)] = 35523, + [SMALL_STATE(902)] = 35554, + [SMALL_STATE(903)] = 35585, + [SMALL_STATE(904)] = 35616, + [SMALL_STATE(905)] = 35647, + [SMALL_STATE(906)] = 35678, + [SMALL_STATE(907)] = 35709, + [SMALL_STATE(908)] = 35740, + [SMALL_STATE(909)] = 35771, + [SMALL_STATE(910)] = 35802, + [SMALL_STATE(911)] = 35833, + [SMALL_STATE(912)] = 35864, + [SMALL_STATE(913)] = 35895, + [SMALL_STATE(914)] = 35926, + [SMALL_STATE(915)] = 35960, + [SMALL_STATE(916)] = 35993, + [SMALL_STATE(917)] = 36028, + [SMALL_STATE(918)] = 36071, + [SMALL_STATE(919)] = 36126, + [SMALL_STATE(920)] = 36181, + [SMALL_STATE(921)] = 36224, + [SMALL_STATE(922)] = 36264, + [SMALL_STATE(923)] = 36304, + [SMALL_STATE(924)] = 36344, + [SMALL_STATE(925)] = 36384, + [SMALL_STATE(926)] = 36424, + [SMALL_STATE(927)] = 36464, + [SMALL_STATE(928)] = 36492, + [SMALL_STATE(929)] = 36520, + [SMALL_STATE(930)] = 36560, + [SMALL_STATE(931)] = 36588, + [SMALL_STATE(932)] = 36620, + [SMALL_STATE(933)] = 36648, + [SMALL_STATE(934)] = 36696, + [SMALL_STATE(935)] = 36742, + [SMALL_STATE(936)] = 36770, + [SMALL_STATE(937)] = 36798, + [SMALL_STATE(938)] = 36838, + [SMALL_STATE(939)] = 36886, + [SMALL_STATE(940)] = 36926, + [SMALL_STATE(941)] = 36966, + [SMALL_STATE(942)] = 37006, + [SMALL_STATE(943)] = 37046, + [SMALL_STATE(944)] = 37086, + [SMALL_STATE(945)] = 37126, + [SMALL_STATE(946)] = 37166, + [SMALL_STATE(947)] = 37210, + [SMALL_STATE(948)] = 37250, + [SMALL_STATE(949)] = 37278, + [SMALL_STATE(950)] = 37318, + [SMALL_STATE(951)] = 37358, + [SMALL_STATE(952)] = 37404, + [SMALL_STATE(953)] = 37432, + [SMALL_STATE(954)] = 37466, + [SMALL_STATE(955)] = 37506, + [SMALL_STATE(956)] = 37546, + [SMALL_STATE(957)] = 37586, + [SMALL_STATE(958)] = 37626, + [SMALL_STATE(959)] = 37662, + [SMALL_STATE(960)] = 37690, + [SMALL_STATE(961)] = 37730, + [SMALL_STATE(962)] = 37770, + [SMALL_STATE(963)] = 37810, + [SMALL_STATE(964)] = 37838, + [SMALL_STATE(965)] = 37878, + [SMALL_STATE(966)] = 37918, + [SMALL_STATE(967)] = 37958, + [SMALL_STATE(968)] = 37998, + [SMALL_STATE(969)] = 38038, + [SMALL_STATE(970)] = 38078, + [SMALL_STATE(971)] = 38118, + [SMALL_STATE(972)] = 38160, + [SMALL_STATE(973)] = 38210, + [SMALL_STATE(974)] = 38250, + [SMALL_STATE(975)] = 38290, + [SMALL_STATE(976)] = 38330, + [SMALL_STATE(977)] = 38373, + [SMALL_STATE(978)] = 38418, + [SMALL_STATE(979)] = 38467, + [SMALL_STATE(980)] = 38494, + [SMALL_STATE(981)] = 38521, + [SMALL_STATE(982)] = 38548, + [SMALL_STATE(983)] = 38589, + [SMALL_STATE(984)] = 38630, + [SMALL_STATE(985)] = 38671, + [SMALL_STATE(986)] = 38716, + [SMALL_STATE(987)] = 38757, + [SMALL_STATE(988)] = 38798, + [SMALL_STATE(989)] = 38839, + [SMALL_STATE(990)] = 38866, + [SMALL_STATE(991)] = 38907, + [SMALL_STATE(992)] = 38952, + [SMALL_STATE(993)] = 38981, + [SMALL_STATE(994)] = 39022, + [SMALL_STATE(995)] = 39067, + [SMALL_STATE(996)] = 39108, + [SMALL_STATE(997)] = 39149, + [SMALL_STATE(998)] = 39176, + [SMALL_STATE(999)] = 39221, + [SMALL_STATE(1000)] = 39262, + [SMALL_STATE(1001)] = 39301, + [SMALL_STATE(1002)] = 39338, + [SMALL_STATE(1003)] = 39373, + [SMALL_STATE(1004)] = 39400, + [SMALL_STATE(1005)] = 39427, + [SMALL_STATE(1006)] = 39454, + [SMALL_STATE(1007)] = 39503, + [SMALL_STATE(1008)] = 39544, + [SMALL_STATE(1009)] = 39571, + [SMALL_STATE(1010)] = 39598, + [SMALL_STATE(1011)] = 39639, + [SMALL_STATE(1012)] = 39670, + [SMALL_STATE(1013)] = 39715, + [SMALL_STATE(1014)] = 39748, + [SMALL_STATE(1015)] = 39793, + [SMALL_STATE(1016)] = 39838, + [SMALL_STATE(1017)] = 39879, + [SMALL_STATE(1018)] = 39920, + [SMALL_STATE(1019)] = 39965, + [SMALL_STATE(1020)] = 40010, + [SMALL_STATE(1021)] = 40051, + [SMALL_STATE(1022)] = 40085, + [SMALL_STATE(1023)] = 40119, + [SMALL_STATE(1024)] = 40142, + [SMALL_STATE(1025)] = 40165, + [SMALL_STATE(1026)] = 40203, + [SMALL_STATE(1027)] = 40241, + [SMALL_STATE(1028)] = 40279, + [SMALL_STATE(1029)] = 40311, + [SMALL_STATE(1030)] = 40343, + [SMALL_STATE(1031)] = 40375, + [SMALL_STATE(1032)] = 40407, + [SMALL_STATE(1033)] = 40439, + [SMALL_STATE(1034)] = 40471, + [SMALL_STATE(1035)] = 40509, + [SMALL_STATE(1036)] = 40547, + [SMALL_STATE(1037)] = 40579, + [SMALL_STATE(1038)] = 40611, + [SMALL_STATE(1039)] = 40643, + [SMALL_STATE(1040)] = 40681, + [SMALL_STATE(1041)] = 40719, + [SMALL_STATE(1042)] = 40748, + [SMALL_STATE(1043)] = 40783, + [SMALL_STATE(1044)] = 40812, + [SMALL_STATE(1045)] = 40841, + [SMALL_STATE(1046)] = 40870, + [SMALL_STATE(1047)] = 40899, + [SMALL_STATE(1048)] = 40922, + [SMALL_STATE(1049)] = 40957, + [SMALL_STATE(1050)] = 40986, + [SMALL_STATE(1051)] = 41013, + [SMALL_STATE(1052)] = 41042, + [SMALL_STATE(1053)] = 41071, + [SMALL_STATE(1054)] = 41100, + [SMALL_STATE(1055)] = 41123, + [SMALL_STATE(1056)] = 41150, + [SMALL_STATE(1057)] = 41179, + [SMALL_STATE(1058)] = 41202, + [SMALL_STATE(1059)] = 41231, + [SMALL_STATE(1060)] = 41258, + [SMALL_STATE(1061)] = 41287, + [SMALL_STATE(1062)] = 41316, + [SMALL_STATE(1063)] = 41351, + [SMALL_STATE(1064)] = 41378, + [SMALL_STATE(1065)] = 41407, + [SMALL_STATE(1066)] = 41436, + [SMALL_STATE(1067)] = 41465, + [SMALL_STATE(1068)] = 41494, + [SMALL_STATE(1069)] = 41517, + [SMALL_STATE(1070)] = 41549, + [SMALL_STATE(1071)] = 41581, + [SMALL_STATE(1072)] = 41613, + [SMALL_STATE(1073)] = 41631, + [SMALL_STATE(1074)] = 41663, + [SMALL_STATE(1075)] = 41689, + [SMALL_STATE(1076)] = 41711, + [SMALL_STATE(1077)] = 41737, + [SMALL_STATE(1078)] = 41761, + [SMALL_STATE(1079)] = 41779, + [SMALL_STATE(1080)] = 41797, + [SMALL_STATE(1081)] = 41823, + [SMALL_STATE(1082)] = 41847, + [SMALL_STATE(1083)] = 41873, + [SMALL_STATE(1084)] = 41897, + [SMALL_STATE(1085)] = 41926, + [SMALL_STATE(1086)] = 41947, + [SMALL_STATE(1087)] = 41976, + [SMALL_STATE(1088)] = 41997, + [SMALL_STATE(1089)] = 42022, + [SMALL_STATE(1090)] = 42051, + [SMALL_STATE(1091)] = 42072, + [SMALL_STATE(1092)] = 42101, + [SMALL_STATE(1093)] = 42130, + [SMALL_STATE(1094)] = 42159, + [SMALL_STATE(1095)] = 42184, + [SMALL_STATE(1096)] = 42213, + [SMALL_STATE(1097)] = 42238, + [SMALL_STATE(1098)] = 42259, + [SMALL_STATE(1099)] = 42288, + [SMALL_STATE(1100)] = 42313, + [SMALL_STATE(1101)] = 42338, + [SMALL_STATE(1102)] = 42365, + [SMALL_STATE(1103)] = 42386, + [SMALL_STATE(1104)] = 42406, + [SMALL_STATE(1105)] = 42432, + [SMALL_STATE(1106)] = 42448, + [SMALL_STATE(1107)] = 42464, + [SMALL_STATE(1108)] = 42480, + [SMALL_STATE(1109)] = 42504, + [SMALL_STATE(1110)] = 42530, + [SMALL_STATE(1111)] = 42556, + [SMALL_STATE(1112)] = 42572, + [SMALL_STATE(1113)] = 42588, + [SMALL_STATE(1114)] = 42612, + [SMALL_STATE(1115)] = 42638, + [SMALL_STATE(1116)] = 42654, + [SMALL_STATE(1117)] = 42674, + [SMALL_STATE(1118)] = 42692, + [SMALL_STATE(1119)] = 42707, + [SMALL_STATE(1120)] = 42724, + [SMALL_STATE(1121)] = 42747, + [SMALL_STATE(1122)] = 42764, + [SMALL_STATE(1123)] = 42779, + [SMALL_STATE(1124)] = 42794, + [SMALL_STATE(1125)] = 42809, + [SMALL_STATE(1126)] = 42824, + [SMALL_STATE(1127)] = 42839, + [SMALL_STATE(1128)] = 42854, + [SMALL_STATE(1129)] = 42869, + [SMALL_STATE(1130)] = 42892, + [SMALL_STATE(1131)] = 42915, + [SMALL_STATE(1132)] = 42933, + [SMALL_STATE(1133)] = 42951, + [SMALL_STATE(1134)] = 42967, + [SMALL_STATE(1135)] = 42981, + [SMALL_STATE(1136)] = 42995, + [SMALL_STATE(1137)] = 43009, + [SMALL_STATE(1138)] = 43023, + [SMALL_STATE(1139)] = 43037, + [SMALL_STATE(1140)] = 43051, + [SMALL_STATE(1141)] = 43065, + [SMALL_STATE(1142)] = 43079, + [SMALL_STATE(1143)] = 43095, + [SMALL_STATE(1144)] = 43109, + [SMALL_STATE(1145)] = 43127, + [SMALL_STATE(1146)] = 43143, + [SMALL_STATE(1147)] = 43161, + [SMALL_STATE(1148)] = 43175, + [SMALL_STATE(1149)] = 43192, + [SMALL_STATE(1150)] = 43211, + [SMALL_STATE(1151)] = 43230, + [SMALL_STATE(1152)] = 43241, + [SMALL_STATE(1153)] = 43260, + [SMALL_STATE(1154)] = 43277, + [SMALL_STATE(1155)] = 43294, + [SMALL_STATE(1156)] = 43311, + [SMALL_STATE(1157)] = 43330, + [SMALL_STATE(1158)] = 43341, + [SMALL_STATE(1159)] = 43352, + [SMALL_STATE(1160)] = 43363, + [SMALL_STATE(1161)] = 43374, + [SMALL_STATE(1162)] = 43385, + [SMALL_STATE(1163)] = 43402, + [SMALL_STATE(1164)] = 43413, + [SMALL_STATE(1165)] = 43424, + [SMALL_STATE(1166)] = 43435, + [SMALL_STATE(1167)] = 43446, + [SMALL_STATE(1168)] = 43457, + [SMALL_STATE(1169)] = 43468, + [SMALL_STATE(1170)] = 43485, + [SMALL_STATE(1171)] = 43504, + [SMALL_STATE(1172)] = 43520, + [SMALL_STATE(1173)] = 43536, + [SMALL_STATE(1174)] = 43552, + [SMALL_STATE(1175)] = 43566, + [SMALL_STATE(1176)] = 43580, + [SMALL_STATE(1177)] = 43596, + [SMALL_STATE(1178)] = 43612, + [SMALL_STATE(1179)] = 43628, + [SMALL_STATE(1180)] = 43644, + [SMALL_STATE(1181)] = 43660, + [SMALL_STATE(1182)] = 43674, + [SMALL_STATE(1183)] = 43690, + [SMALL_STATE(1184)] = 43706, + [SMALL_STATE(1185)] = 43722, + [SMALL_STATE(1186)] = 43738, + [SMALL_STATE(1187)] = 43754, + [SMALL_STATE(1188)] = 43768, + [SMALL_STATE(1189)] = 43778, + [SMALL_STATE(1190)] = 43794, + [SMALL_STATE(1191)] = 43810, + [SMALL_STATE(1192)] = 43824, + [SMALL_STATE(1193)] = 43838, + [SMALL_STATE(1194)] = 43852, + [SMALL_STATE(1195)] = 43866, + [SMALL_STATE(1196)] = 43882, + [SMALL_STATE(1197)] = 43895, + [SMALL_STATE(1198)] = 43904, + [SMALL_STATE(1199)] = 43917, + [SMALL_STATE(1200)] = 43930, + [SMALL_STATE(1201)] = 43939, + [SMALL_STATE(1202)] = 43950, + [SMALL_STATE(1203)] = 43963, + [SMALL_STATE(1204)] = 43976, + [SMALL_STATE(1205)] = 43989, + [SMALL_STATE(1206)] = 44002, + [SMALL_STATE(1207)] = 44015, + [SMALL_STATE(1208)] = 44028, + [SMALL_STATE(1209)] = 44041, + [SMALL_STATE(1210)] = 44050, + [SMALL_STATE(1211)] = 44063, + [SMALL_STATE(1212)] = 44076, + [SMALL_STATE(1213)] = 44089, + [SMALL_STATE(1214)] = 44102, + [SMALL_STATE(1215)] = 44115, + [SMALL_STATE(1216)] = 44128, + [SMALL_STATE(1217)] = 44141, + [SMALL_STATE(1218)] = 44154, + [SMALL_STATE(1219)] = 44167, + [SMALL_STATE(1220)] = 44180, + [SMALL_STATE(1221)] = 44193, + [SMALL_STATE(1222)] = 44206, + [SMALL_STATE(1223)] = 44219, + [SMALL_STATE(1224)] = 44232, + [SMALL_STATE(1225)] = 44245, + [SMALL_STATE(1226)] = 44258, + [SMALL_STATE(1227)] = 44271, + [SMALL_STATE(1228)] = 44284, + [SMALL_STATE(1229)] = 44297, + [SMALL_STATE(1230)] = 44310, + [SMALL_STATE(1231)] = 44323, + [SMALL_STATE(1232)] = 44336, + [SMALL_STATE(1233)] = 44349, + [SMALL_STATE(1234)] = 44362, + [SMALL_STATE(1235)] = 44375, + [SMALL_STATE(1236)] = 44388, + [SMALL_STATE(1237)] = 44401, + [SMALL_STATE(1238)] = 44414, + [SMALL_STATE(1239)] = 44427, + [SMALL_STATE(1240)] = 44440, + [SMALL_STATE(1241)] = 44453, + [SMALL_STATE(1242)] = 44464, + [SMALL_STATE(1243)] = 44477, + [SMALL_STATE(1244)] = 44490, + [SMALL_STATE(1245)] = 44503, + [SMALL_STATE(1246)] = 44512, + [SMALL_STATE(1247)] = 44525, + [SMALL_STATE(1248)] = 44538, + [SMALL_STATE(1249)] = 44551, + [SMALL_STATE(1250)] = 44564, + [SMALL_STATE(1251)] = 44577, + [SMALL_STATE(1252)] = 44590, + [SMALL_STATE(1253)] = 44603, + [SMALL_STATE(1254)] = 44612, + [SMALL_STATE(1255)] = 44625, + [SMALL_STATE(1256)] = 44638, + [SMALL_STATE(1257)] = 44651, + [SMALL_STATE(1258)] = 44664, + [SMALL_STATE(1259)] = 44677, + [SMALL_STATE(1260)] = 44690, + [SMALL_STATE(1261)] = 44703, + [SMALL_STATE(1262)] = 44716, + [SMALL_STATE(1263)] = 44729, + [SMALL_STATE(1264)] = 44742, + [SMALL_STATE(1265)] = 44751, + [SMALL_STATE(1266)] = 44764, + [SMALL_STATE(1267)] = 44777, + [SMALL_STATE(1268)] = 44790, + [SMALL_STATE(1269)] = 44803, + [SMALL_STATE(1270)] = 44816, + [SMALL_STATE(1271)] = 44829, + [SMALL_STATE(1272)] = 44842, + [SMALL_STATE(1273)] = 44855, + [SMALL_STATE(1274)] = 44863, + [SMALL_STATE(1275)] = 44871, + [SMALL_STATE(1276)] = 44881, + [SMALL_STATE(1277)] = 44891, + [SMALL_STATE(1278)] = 44901, + [SMALL_STATE(1279)] = 44911, + [SMALL_STATE(1280)] = 44919, + [SMALL_STATE(1281)] = 44929, + [SMALL_STATE(1282)] = 44939, + [SMALL_STATE(1283)] = 44949, + [SMALL_STATE(1284)] = 44959, + [SMALL_STATE(1285)] = 44969, + [SMALL_STATE(1286)] = 44979, + [SMALL_STATE(1287)] = 44989, + [SMALL_STATE(1288)] = 44999, + [SMALL_STATE(1289)] = 45009, + [SMALL_STATE(1290)] = 45019, + [SMALL_STATE(1291)] = 45029, + [SMALL_STATE(1292)] = 45039, + [SMALL_STATE(1293)] = 45049, + [SMALL_STATE(1294)] = 45057, + [SMALL_STATE(1295)] = 45067, + [SMALL_STATE(1296)] = 45075, + [SMALL_STATE(1297)] = 45085, + [SMALL_STATE(1298)] = 45093, + [SMALL_STATE(1299)] = 45103, + [SMALL_STATE(1300)] = 45113, + [SMALL_STATE(1301)] = 45123, + [SMALL_STATE(1302)] = 45131, + [SMALL_STATE(1303)] = 45141, + [SMALL_STATE(1304)] = 45151, + [SMALL_STATE(1305)] = 45161, + [SMALL_STATE(1306)] = 45171, + [SMALL_STATE(1307)] = 45181, + [SMALL_STATE(1308)] = 45191, + [SMALL_STATE(1309)] = 45201, + [SMALL_STATE(1310)] = 45209, + [SMALL_STATE(1311)] = 45219, + [SMALL_STATE(1312)] = 45229, + [SMALL_STATE(1313)] = 45239, + [SMALL_STATE(1314)] = 45247, + [SMALL_STATE(1315)] = 45255, + [SMALL_STATE(1316)] = 45265, + [SMALL_STATE(1317)] = 45275, + [SMALL_STATE(1318)] = 45283, + [SMALL_STATE(1319)] = 45291, + [SMALL_STATE(1320)] = 45299, + [SMALL_STATE(1321)] = 45307, + [SMALL_STATE(1322)] = 45317, + [SMALL_STATE(1323)] = 45325, + [SMALL_STATE(1324)] = 45335, + [SMALL_STATE(1325)] = 45345, + [SMALL_STATE(1326)] = 45355, + [SMALL_STATE(1327)] = 45365, + [SMALL_STATE(1328)] = 45373, + [SMALL_STATE(1329)] = 45383, + [SMALL_STATE(1330)] = 45393, + [SMALL_STATE(1331)] = 45403, + [SMALL_STATE(1332)] = 45411, + [SMALL_STATE(1333)] = 45419, + [SMALL_STATE(1334)] = 45427, + [SMALL_STATE(1335)] = 45437, + [SMALL_STATE(1336)] = 45447, + [SMALL_STATE(1337)] = 45455, + [SMALL_STATE(1338)] = 45462, + [SMALL_STATE(1339)] = 45469, + [SMALL_STATE(1340)] = 45476, + [SMALL_STATE(1341)] = 45483, + [SMALL_STATE(1342)] = 45490, + [SMALL_STATE(1343)] = 45497, + [SMALL_STATE(1344)] = 45504, + [SMALL_STATE(1345)] = 45511, + [SMALL_STATE(1346)] = 45518, + [SMALL_STATE(1347)] = 45525, + [SMALL_STATE(1348)] = 45532, + [SMALL_STATE(1349)] = 45539, + [SMALL_STATE(1350)] = 45546, + [SMALL_STATE(1351)] = 45553, + [SMALL_STATE(1352)] = 45560, + [SMALL_STATE(1353)] = 45567, + [SMALL_STATE(1354)] = 45574, + [SMALL_STATE(1355)] = 45581, + [SMALL_STATE(1356)] = 45588, + [SMALL_STATE(1357)] = 45595, + [SMALL_STATE(1358)] = 45602, + [SMALL_STATE(1359)] = 45609, + [SMALL_STATE(1360)] = 45616, + [SMALL_STATE(1361)] = 45623, + [SMALL_STATE(1362)] = 45630, + [SMALL_STATE(1363)] = 45637, + [SMALL_STATE(1364)] = 45644, + [SMALL_STATE(1365)] = 45651, + [SMALL_STATE(1366)] = 45658, + [SMALL_STATE(1367)] = 45665, + [SMALL_STATE(1368)] = 45672, + [SMALL_STATE(1369)] = 45679, + [SMALL_STATE(1370)] = 45686, + [SMALL_STATE(1371)] = 45693, + [SMALL_STATE(1372)] = 45700, + [SMALL_STATE(1373)] = 45707, + [SMALL_STATE(1374)] = 45714, + [SMALL_STATE(1375)] = 45721, + [SMALL_STATE(1376)] = 45728, + [SMALL_STATE(1377)] = 45735, + [SMALL_STATE(1378)] = 45742, + [SMALL_STATE(1379)] = 45749, + [SMALL_STATE(1380)] = 45756, + [SMALL_STATE(1381)] = 45763, + [SMALL_STATE(1382)] = 45770, + [SMALL_STATE(1383)] = 45777, + [SMALL_STATE(1384)] = 45784, + [SMALL_STATE(1385)] = 45791, + [SMALL_STATE(1386)] = 45798, + [SMALL_STATE(1387)] = 45805, + [SMALL_STATE(1388)] = 45812, + [SMALL_STATE(1389)] = 45819, + [SMALL_STATE(1390)] = 45826, + [SMALL_STATE(1391)] = 45833, + [SMALL_STATE(1392)] = 45840, + [SMALL_STATE(1393)] = 45847, + [SMALL_STATE(1394)] = 45854, + [SMALL_STATE(1395)] = 45861, + [SMALL_STATE(1396)] = 45868, + [SMALL_STATE(1397)] = 45875, + [SMALL_STATE(1398)] = 45882, + [SMALL_STATE(1399)] = 45889, + [SMALL_STATE(1400)] = 45896, + [SMALL_STATE(1401)] = 45903, + [SMALL_STATE(1402)] = 45910, + [SMALL_STATE(1403)] = 45917, + [SMALL_STATE(1404)] = 45924, + [SMALL_STATE(1405)] = 45931, + [SMALL_STATE(1406)] = 45938, + [SMALL_STATE(1407)] = 45945, + [SMALL_STATE(1408)] = 45952, + [SMALL_STATE(1409)] = 45959, + [SMALL_STATE(1410)] = 45966, + [SMALL_STATE(1411)] = 45973, + [SMALL_STATE(1412)] = 45980, + [SMALL_STATE(1413)] = 45987, + [SMALL_STATE(1414)] = 45994, + [SMALL_STATE(1415)] = 46001, + [SMALL_STATE(1416)] = 46008, + [SMALL_STATE(1417)] = 46015, + [SMALL_STATE(1418)] = 46022, + [SMALL_STATE(1419)] = 46029, + [SMALL_STATE(1420)] = 46036, + [SMALL_STATE(1421)] = 46043, + [SMALL_STATE(1422)] = 46050, + [SMALL_STATE(1423)] = 46057, + [SMALL_STATE(1424)] = 46064, + [SMALL_STATE(1425)] = 46071, + [SMALL_STATE(1426)] = 46078, + [SMALL_STATE(1427)] = 46085, + [SMALL_STATE(1428)] = 46092, + [SMALL_STATE(1429)] = 46099, + [SMALL_STATE(1430)] = 46106, + [SMALL_STATE(1431)] = 46113, + [SMALL_STATE(1432)] = 46120, + [SMALL_STATE(1433)] = 46127, + [SMALL_STATE(1434)] = 46134, + [SMALL_STATE(1435)] = 46141, + [SMALL_STATE(1436)] = 46148, + [SMALL_STATE(1437)] = 46155, + [SMALL_STATE(1438)] = 46162, + [SMALL_STATE(1439)] = 46169, + [SMALL_STATE(1440)] = 46176, + [SMALL_STATE(1441)] = 46183, + [SMALL_STATE(1442)] = 46190, + [SMALL_STATE(1443)] = 46197, + [SMALL_STATE(1444)] = 46204, + [SMALL_STATE(1445)] = 46211, + [SMALL_STATE(1446)] = 46218, + [SMALL_STATE(1447)] = 46225, + [SMALL_STATE(1448)] = 46232, + [SMALL_STATE(1449)] = 46239, + [SMALL_STATE(1450)] = 46246, + [SMALL_STATE(1451)] = 46253, + [SMALL_STATE(1452)] = 46260, + [SMALL_STATE(1453)] = 46267, + [SMALL_STATE(1454)] = 46274, + [SMALL_STATE(1455)] = 46281, + [SMALL_STATE(1456)] = 46288, + [SMALL_STATE(1457)] = 46295, + [SMALL_STATE(1458)] = 46302, + [SMALL_STATE(1459)] = 46309, + [SMALL_STATE(1460)] = 46316, + [SMALL_STATE(1461)] = 46323, + [SMALL_STATE(1462)] = 46330, + [SMALL_STATE(1463)] = 46337, + [SMALL_STATE(1464)] = 46344, + [SMALL_STATE(1465)] = 46351, + [SMALL_STATE(1466)] = 46358, + [SMALL_STATE(1467)] = 46365, + [SMALL_STATE(1468)] = 46372, + [SMALL_STATE(1469)] = 46379, + [SMALL_STATE(1470)] = 46386, + [SMALL_STATE(1471)] = 46393, + [SMALL_STATE(1472)] = 46400, + [SMALL_STATE(1473)] = 46407, + [SMALL_STATE(1474)] = 46414, + [SMALL_STATE(1475)] = 46421, + [SMALL_STATE(1476)] = 46428, + [SMALL_STATE(1477)] = 46435, + [SMALL_STATE(1478)] = 46442, + [SMALL_STATE(1479)] = 46449, + [SMALL_STATE(1480)] = 46456, + [SMALL_STATE(1481)] = 46463, + [SMALL_STATE(1482)] = 46470, + [SMALL_STATE(1483)] = 46477, + [SMALL_STATE(1484)] = 46484, + [SMALL_STATE(1485)] = 46491, + [SMALL_STATE(1486)] = 46498, + [SMALL_STATE(1487)] = 46505, + [SMALL_STATE(1488)] = 46512, + [SMALL_STATE(1489)] = 46519, + [SMALL_STATE(1490)] = 46526, + [SMALL_STATE(1491)] = 46533, + [SMALL_STATE(1492)] = 46540, + [SMALL_STATE(1493)] = 46547, + [SMALL_STATE(1494)] = 46554, + [SMALL_STATE(1495)] = 46561, + [SMALL_STATE(1496)] = 46568, + [SMALL_STATE(1497)] = 46575, + [SMALL_STATE(1498)] = 46582, + [SMALL_STATE(1499)] = 46589, + [SMALL_STATE(1500)] = 46596, + [SMALL_STATE(1501)] = 46603, + [SMALL_STATE(1502)] = 46610, + [SMALL_STATE(1503)] = 46617, + [SMALL_STATE(1504)] = 46624, + [SMALL_STATE(1505)] = 46631, + [SMALL_STATE(1506)] = 46638, + [SMALL_STATE(1507)] = 46645, + [SMALL_STATE(1508)] = 46652, + [SMALL_STATE(1509)] = 46659, + [SMALL_STATE(1510)] = 46666, + [SMALL_STATE(1511)] = 46673, + [SMALL_STATE(1512)] = 46680, + [SMALL_STATE(1513)] = 46687, + [SMALL_STATE(1514)] = 46694, + [SMALL_STATE(1515)] = 46701, + [SMALL_STATE(1516)] = 46708, + [SMALL_STATE(1517)] = 46715, + [SMALL_STATE(1518)] = 46722, + [SMALL_STATE(1519)] = 46729, + [SMALL_STATE(1520)] = 46736, + [SMALL_STATE(1521)] = 46743, + [SMALL_STATE(1522)] = 46750, + [SMALL_STATE(1523)] = 46757, + [SMALL_STATE(1524)] = 46764, + [SMALL_STATE(1525)] = 46771, + [SMALL_STATE(1526)] = 46778, + [SMALL_STATE(1527)] = 46785, + [SMALL_STATE(1528)] = 46792, + [SMALL_STATE(1529)] = 46799, + [SMALL_STATE(1530)] = 46806, + [SMALL_STATE(1531)] = 46813, + [SMALL_STATE(1532)] = 46820, + [SMALL_STATE(1533)] = 46827, + [SMALL_STATE(1534)] = 46834, + [SMALL_STATE(1535)] = 46841, + [SMALL_STATE(1536)] = 46848, + [SMALL_STATE(1537)] = 46855, + [SMALL_STATE(1538)] = 46862, + [SMALL_STATE(1539)] = 46869, + [SMALL_STATE(1540)] = 46876, + [SMALL_STATE(1541)] = 46883, + [SMALL_STATE(1542)] = 46890, + [SMALL_STATE(1543)] = 46897, + [SMALL_STATE(1544)] = 46904, + [SMALL_STATE(1545)] = 46911, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -83083,1654 +85821,1731 @@ 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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), [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), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(418), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1102), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1452), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(968), + [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(1453), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1330), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(376), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(509), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(509), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(534), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(89), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(890), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(762), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1539), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1334), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1536), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(905), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(699), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(700), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(765), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(910), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1150), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1152), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1325), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1311), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(578), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1422), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1323), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(309), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1543), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1419), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(511), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(510), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1521), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1133), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(627), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1301), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1189), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(627), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(419), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1085), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1501), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(921), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1481), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1291), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(225), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(882), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1304), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1290), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(565), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1358), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1306), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(183), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1545), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(444), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1355), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1485), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(416), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1097), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1387), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1326), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(267), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(887), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(722), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1316), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1286), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(540), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1533), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1312), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(307), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1541), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(478), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1531), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1394), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(421), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1087), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1544), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(937), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1542), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1335), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(302), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(885), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(746), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1310), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1308), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(527), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1528), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1307), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(282), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(466), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1524), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1523), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1522), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(417), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(376), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(534), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(890), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(699), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1539), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1334), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1536), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(700), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(765), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(910), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1207), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1150), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1152), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1311), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1323), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(309), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1543), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(453), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1421), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1419), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1459), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1521), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1133), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(627), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1301), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1189), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(627), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(414), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(267), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(887), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1316), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1286), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1312), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(307), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1541), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(478), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1532), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1531), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1394), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(422), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(302), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(885), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1310), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1308), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1307), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(282), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(466), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1524), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1523), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1522), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(420), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(225), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(882), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1304), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1290), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1306), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(183), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1545), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(444), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1355), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1485), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 44), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 63), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 63), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 75), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 75), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 92), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 92), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 93), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 93), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 94), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 94), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 95), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 95), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 50), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 50), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 60), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 83), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 83), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 84), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 84), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 85), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 85), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 76), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 76), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 64), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 64), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 74), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 74), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 87), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 87), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 86), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 86), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 55), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 55), + [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_preproc_if, 6, .production_id = 71), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 71), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 52), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 52), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 56), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 56), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 57), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 57), + [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 = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(638), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(376), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(509), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(509), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(534), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(302), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1284), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(26), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1310), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1308), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1528), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1307), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(282), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(466), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1524), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1523), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1522), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(511), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(510), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1521), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1133), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1301), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1189), [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), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(635), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(225), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(27), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1304), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1290), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(565), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1358), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1306), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(183), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1545), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(444), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1355), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1485), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(636), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(89), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1311), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(578), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1422), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1323), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(309), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1543), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(453), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1421), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1419), + [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1459), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(637), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(267), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1316), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1286), + [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(1533), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1312), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(307), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1541), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(478), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1532), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1531), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1394), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [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}}, SHIFT(666), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [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(916), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1517] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(878), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(896), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1502), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(923), + [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(1420), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1288), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(699), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1539), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1315), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1536), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(700), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(765), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(910), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1207), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1150), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1152), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1480), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(967), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1439), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1503), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(962), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1467), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1282), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1189), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [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_pointer_expression, 2, .production_id = 4), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 70), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 70), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 67), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 67), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 91), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 91), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 104), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 104), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 45), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 45), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 90), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 90), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 53), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 53), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 78), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 78), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 99), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 99), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 100), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 100), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 79), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 79), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 54), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 54), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 66), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 66), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(699), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1539), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1315), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1536), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(700), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(669), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 71), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 71), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 50), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 50), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 50), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 50), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 56), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 56), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 57), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 57), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 31), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(754), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(902), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 49), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 62), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 82), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(700), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(878), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [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_struct_specifier, 2, .production_id = 7), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 46), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 46), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 43), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 43), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2496] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(878), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1023), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1024), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 30), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1334), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 68), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1539), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 80), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 30), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 80), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 68), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_operand_list, 1), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 68), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 80), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 81), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 81), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 48), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 48), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 69), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 69), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 48), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 48), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 69), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 69), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 42), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 81), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 81), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 30), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 48), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 48), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 48), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 48), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(517), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1378), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 69), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 69), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 48), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 48), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 48), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 48), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 81), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 81), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1188), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 30), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 47), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 81), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 30), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 48), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 69), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 72), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 58), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 48), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 59), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 51), SHIFT_REPEAT(1052), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 51), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 97), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1179), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1179), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_operand_list, 2, .production_id = 65), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 102), SHIFT_REPEAT(1137), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 102), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 89), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_operand_list_repeat1, 2, .production_id = 88), SHIFT_REPEAT(1116), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_operand_list_repeat1, 2, .production_id = 88), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_operand_list, 3, .production_id = 77), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 89), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 73), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(634), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1320), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_operand, 7, .production_id = 106), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 105), SHIFT_REPEAT(1529), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 105), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(960), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(533), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 51), SHIFT_REPEAT(1029), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 51), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 103), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(875), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(415), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1328), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_operand_list_repeat1, 2, .production_id = 65), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1280), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 98), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_operand, 4, .production_id = 96), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 51), SHIFT_REPEAT(1058), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 51), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 98), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 56), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 71), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 56), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 71), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3728] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index c916d54..30e40a9 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -128,6 +128,50 @@ int main() { (identifier) (argument_list (string_literal (escape_sequence)) (identifier))))))) +============================================ +GNU inline assembly +============================================ + +asm volatile ( + "mov r0, %0\n" + "mov r1, %[y]\n" + "add r2, r0, r1\n" + "mov %1, r2\n" + : "r" (z) + : "=r" (x), + [y] "=r" (y) + : "r2"); + +--- + +(translation_unit + (expression_statement + (gnu_asm_expression + (gnu_asm_qualifier) + (concatenated_string + (string_literal + (escape_sequence)) + (string_literal + (escape_sequence)) + (string_literal + (escape_sequence)) + (string_literal + (escape_sequence))) + (gnu_asm_operand_list + (gnu_asm_operand + (string_literal) + (identifier))) + (gnu_asm_operand_list + (gnu_asm_operand + (string_literal) + (identifier)) + (gnu_asm_operand + (identifier) + (string_literal) + (identifier))) + (gnu_asm_clobber_list + (string_literal))))) + ============================================ String literals ============================================